diff options
author | 最萌小汐 <sumneko@hotmail.com> | 2020-08-14 15:35:02 +0800 |
---|---|---|
committer | 最萌小汐 <sumneko@hotmail.com> | 2020-08-14 15:35:02 +0800 |
commit | 073cb7d520f288f28f3abd74571b4bd575597877 (patch) | |
tree | 6c3caec53c7192c67f0ddf6302413d5172d0f1e7 /test-beta/crossfile | |
parent | 1302aa460db48fca165ed4b2603e7ba085cf77ad (diff) | |
download | lua-language-server-073cb7d520f288f28f3abd74571b4bd575597877.zip |
更新锁的设计
Diffstat (limited to 'test-beta/crossfile')
-rw-r--r-- | test-beta/crossfile/references.lua | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/test-beta/crossfile/references.lua b/test-beta/crossfile/references.lua index 4fae9cb7..3c952def 100644 --- a/test-beta/crossfile/references.lua +++ b/test-beta/crossfile/references.lua @@ -286,7 +286,7 @@ TEST { <!f!>() return { - f = <!f!>, + <!f!> = <!f!>, } ]] } @@ -300,7 +300,7 @@ TEST { end return { - f = <!f!>, + <!f!> = <!f!>, } ]] }, @@ -313,7 +313,7 @@ TEST { <!f!>() return { - f = <!f!>, + <!f!> = <!f!>, } ]] }, @@ -321,12 +321,12 @@ TEST { path = 'b.lua', content = [[ local t = require 'a' - local <!f!> = t.f + local <!f!> = t.<!f!> <?f?>() return { - f = <!f!>, + <!f!> = <!f!>, } ]] } |