Skip to content

Commit

Permalink
刷新2.2.6版本发布日志
Browse files Browse the repository at this point in the history
  • Loading branch information
liwangqian committed Dec 23, 2018
1 parent 01179dd commit 102a1cd
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 1 deletion.
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,15 @@

All notable changes to the "luacoderassist" extension will be documented in this file.

## 2.2.6 @ 2018-12-23

- 修复:#49 通过赋值表达式`t.x = 123`动态地向表添加成员变量时,无法生效的问题
- 修复:#49 问题2,当函数返回的是局部表时,两次调用该函数得到的表不应该是相同的,否则向其中一个表添加成员时,会影响所有该函数返回的表
- 修复:#49 第三种场景,`local foo; function foo() end`存在两个foo符号的问题
- 修复:#50 当返回一个函数调用(尾调用)时,函数的返回值类型只推导了尾调用函数的第一个返回值
- 修复:形如`local xx = foo(params).foo()`的表达式,`xx`变量的类型推导失败的问题
- 优化:#48区分符号的range和scope,解决符号outline不跟随鼠标的问题,但是该修改无法解决在表定义的外部定义函数的场景,比如:`local tbl={}; function tb.foo() end`,此时foo方法不在tb的range内

## 2.2.5 @ 2018-12-09

- 新增:初步支持workspace工程,暂时还不支持动态增删workspace下的目录
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"displayName": "LuaCoderAssist",
"description": "lua coder assistant in javascript for vscode",
"icon": "images/icon.png",
"version": "2.2.5",
"version": "2.2.6",
"publisher": "liwangqian",
"engines": {
"vscode": "^1.25.0"
Expand Down

0 comments on commit 102a1cd

Please sign in to comment.