summaryrefslogtreecommitdiff
path: root/test/crossfile
diff options
context:
space:
mode:
author最萌小汐 <sumneko@hotmail.com>2021-09-22 15:54:44 +0800
committer最萌小汐 <sumneko@hotmail.com>2021-09-22 15:54:44 +0800
commitb7f7789e46ab8c67d25704be696a1523762b1d80 (patch)
treebfbe4435180d2304487d28655c3fbbf987793714 /test/crossfile
parenta11c1e47a1bbe1004333143431f901ab8ecde4dd (diff)
downloadlua-language-server-b7f7789e46ab8c67d25704be696a1523762b1d80.zip
update
Diffstat (limited to 'test/crossfile')
-rw-r--r--test/crossfile/allreferences.lua12
1 files changed, 6 insertions, 6 deletions
diff --git a/test/crossfile/allreferences.lua b/test/crossfile/allreferences.lua
index 67eb893c..bddc159d 100644
--- a/test/crossfile/allreferences.lua
+++ b/test/crossfile/allreferences.lua
@@ -20,7 +20,7 @@ TEST {
path = 'a.lua',
content = [[
local m = {}
- function m.<?func?>()
+ function m.<~func~>()
end
return m
]],
@@ -38,7 +38,7 @@ TEST {
{
path = 'a.lua',
content = [[
- return <?function () end?>
+ return <~function () end~>
]],
},
{
@@ -71,7 +71,7 @@ TEST {
{
path = 'a.lua',
content = [[
- local function <?f?>()
+ local function <~f~>()
end
return {
@@ -125,7 +125,7 @@ TEST {
local t = require 'a'
local <!f!> = t.<!f!>
- <?f?>()
+ <~f~>()
return {
<!f!> = <!f!>,
@@ -138,7 +138,7 @@ TEST {
{
path = 'a.lua',
content = [[
- local function <?f?>()
+ local function <~f~>()
end
return {
@@ -201,7 +201,7 @@ TEST {
{
path = 'a.lua',
content = [[
- local <?t?> = require 'b'
+ local <~t~> = require 'b'
return <!t!>
]]
},