diff options
Diffstat (limited to 'test/crossfile/definition.lua')
-rw-r--r-- | test/crossfile/definition.lua | 38 |
1 files changed, 19 insertions, 19 deletions
diff --git a/test/crossfile/definition.lua b/test/crossfile/definition.lua index 6fb17082..ebe4dc31 100644 --- a/test/crossfile/definition.lua +++ b/test/crossfile/definition.lua @@ -830,22 +830,22 @@ print(t.x.<?a?>) } } ---TEST { --- { --- path = 'a.lua', --- content = [[ ------@type Class ---local m ---m.<!xx!> = 1 --- ]] --- }, --- { --- path = 'b.lua', --- content = [[ ------@class Class ---local m --- ---print(m.<?xx?>) --- ]] --- } ---} +TEST { + { + path = 'a.lua', + content = [[ +---@type Class +local m +m.<!xx!> = 1 + ]] + }, + { + path = 'b.lua', + content = [[ +---@class Class +local m + +print(m.<?xx?>) + ]] + } +} |