Commit 4f60223 1 parent e143aea commit 4f60223 Copy full SHA for 4f60223
File tree 4 files changed +32
-2
lines changed
4 files changed +32
-2
lines changed Original file line number Diff line number Diff line change 4
4
5
5
# 0.6.7
6
6
7
+ ` FIX ` 临时把add改为TryAdd, 修复启动错误
8
+
9
+ ` FIX ` 修复注释中的缩进显示
10
+
11
+ ` NEW ` 隐式继承, 例如:
12
+ ``` lua
13
+ --- @class A
14
+ local a = enum {
15
+ aaa = 123
16
+ }
17
+ ```
18
+ 此时A类将隐式继承右侧表达式的类型
19
+
20
+ # 0.6.7
21
+
7
22
` FIX ` 修复多线程问题
8
23
9
24
` FIX ` 修复debug inline values过多的问题
Original file line number Diff line number Diff line change 2
2
3
3
# 0.6.7
4
4
5
+ ` FIX ` Temporarily change add to TryAdd, fix startup error
6
+
7
+ ` FIX ` Fix indentation in comments.
8
+
9
+ ` NEW ` Implicit inheritance, e.g..
10
+ ``` lua
11
+ --- @class A
12
+ local a = enum {
13
+ aaa = 123
14
+ }
15
+ ```
16
+ At this point, class A will implicitly inherit the type of the right-hand expression
17
+
18
+ # 0.6.7
19
+
5
20
` FIX ` Fix multithreading problem.
6
21
7
22
` FIX ` Fix debug inline values being too high
Original file line number Diff line number Diff line change @@ -3,6 +3,6 @@ exports.default = {
3
3
emmyDebuggerUrl : 'https://github.com/EmmyLua/EmmyLuaDebugger/releases/download' ,
4
4
lanServerVersion : "0.5.16" ,
5
5
lanServerUrl : 'https://github.com/EmmyLua/EmmyLua-LanguageServer/releases/download' ,
6
- newLanguageServerVersion : "0.1.6 " ,
6
+ newLanguageServerVersion : "0.1.7 " ,
7
7
newLanguageServerUrl : "https://github.com/CppCXY/EmmyLuaAnalyzer/releases/download"
8
8
}
Original file line number Diff line number Diff line change 2
2
"name" : " emmylua" ,
3
3
"displayName" : " EmmyLua" ,
4
4
"description" : " EmmyLua for vscode" ,
5
- "version" : " 0.6.7 " ,
5
+ "version" : " 0.6.8 " ,
6
6
"icon" : " res/icon.png" ,
7
7
"publisher" : " tangzx" ,
8
8
"engines" : {
You can’t perform that action at this time.
0 commit comments