diff options
author | 最萌小汐 <sumneko@hotmail.com> | 2022-11-18 11:56:22 +0800 |
---|---|---|
committer | 最萌小汐 <sumneko@hotmail.com> | 2022-11-18 11:56:22 +0800 |
commit | e13503e871ade8422e5a44d5c582f05769fe8dde (patch) | |
tree | 065b82b7398123f23f6d78972683efa347687a6c /changelog.md | |
parent | 8d383d5d34ce25faa32f421560632de21239bed5 (diff) | |
download | lua-language-server-e13503e871ade8422e5a44d5c582f05769fe8dde.zip |
resolve recursive runner
Diffstat (limited to 'changelog.md')
-rw-r--r-- | changelog.md | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/changelog.md b/changelog.md index 7a20fc9e..1a82fac7 100644 --- a/changelog.md +++ b/changelog.md @@ -3,6 +3,18 @@ ## 3.6.4 * `FIX` [#1698] [#1698]: https://github.com/sumneko/lua-language-server/issues/1698 +* `FIX` circulation reference in process analysis + ```lua + ---@type number + local x + + ---@type number + local y + + x = y + + y = x --> Can not infer `y` before + ``` ## 3.6.3 `2022-11-14` |