diff options
author | 最萌小汐 <sumneko@hotmail.com> | 2019-11-23 00:05:30 +0800 |
---|---|---|
committer | 最萌小汐 <sumneko@hotmail.com> | 2019-11-23 00:05:30 +0800 |
commit | 6da2b175e20ed3c03b0dfcfc9046de1e0e5d4444 (patch) | |
tree | fdc22d78150fd1c5edc46732c8b151ccfefb519f /test-beta/full | |
parent | d0ff66c9abe9d6abbca12fd811e0c3cb69c1033a (diff) | |
download | lua-language-server-6da2b175e20ed3c03b0dfcfc9046de1e0e5d4444.zip |
正路目录
Diffstat (limited to 'test-beta/full')
-rw-r--r-- | test-beta/full/dirty.lua | 15 | ||||
-rw-r--r-- | test-beta/full/example.lua | 43 | ||||
-rw-r--r-- | test-beta/full/init.lua | 13 | ||||
-rw-r--r-- | test-beta/full/normal.lua | 157 |
4 files changed, 228 insertions, 0 deletions
diff --git a/test-beta/full/dirty.lua b/test-beta/full/dirty.lua new file mode 100644 index 00000000..5fe4e998 --- /dev/null +++ b/test-beta/full/dirty.lua @@ -0,0 +1,15 @@ +TEST [[ +a. +]] + +TEST [[ +a: +]] + +TEST [[ +end +]] + +TEST [[ +table.02X +]] diff --git a/test-beta/full/example.lua b/test-beta/full/example.lua new file mode 100644 index 00000000..5b096655 --- /dev/null +++ b/test-beta/full/example.lua @@ -0,0 +1,43 @@ +local util = require 'utility' +local parser = require 'parser' +local files = require 'files' +local diag = require 'core.diagnostics' + +-- 临时 +local function testIfExit(path) + local buf = util.loadFile(path:string()) + if buf then + local vm + + local clock = os.clock() + local max = 100 + local need + for i = 1, max do + vm = TEST(buf) + local passed = os.clock() - clock + if passed >= 1.0 or i == max then + need = passed / i + break + end + end + print(('基准编译测试[%s]单次耗时:%.10f'):format(path:filename():string(), need)) + + local clock = os.clock() + local max = 100 + local need + local lines = parser:lines(buf) + for i = 1, max do + files.removeAll() + files.setText('', buf) + diag('') + local passed = os.clock() - clock + if passed >= 1.0 or i == max then + need = passed / i + break + end + end + print(('基准诊断测试[%s]单次耗时:%.10f'):format(path:filename():string(), need)) + end +end +testIfExit(ROOT / 'test' / 'example' / 'vm.txt') +testIfExit(ROOT / 'test' / 'example' / 'largeGlobal.txt') diff --git a/test-beta/full/init.lua b/test-beta/full/init.lua new file mode 100644 index 00000000..f370671e --- /dev/null +++ b/test-beta/full/init.lua @@ -0,0 +1,13 @@ +local parser = require 'parser' + +rawset(_G, 'TEST', true) + +function TEST(script) + local ast = parser:compile(script, 'lua', 'Lua 5.3') + assert(ast) + return ast +end + +require 'full.normal' +require 'full.example' +require 'full.dirty' diff --git a/test-beta/full/normal.lua b/test-beta/full/normal.lua new file mode 100644 index 00000000..a673e74b --- /dev/null +++ b/test-beta/full/normal.lua @@ -0,0 +1,157 @@ +TEST [[ +do + x = 1 +end +]] + +TEST [[ +return nil, 1, true, 'xx' +]] + +TEST [[ +return a +]] + +TEST [[ +retrun a.b:c(1, 2, ...)[1][name] +]] + +TEST [[ +return 1 + 1 +]] + +TEST [[ +return -1 +]] + +TEST [[ +return ... +]] + +TEST [[ +return function (a, b, ...) +end +]] + +TEST [[ +return { + a = 1, + b = { + c = d, + e = f, + }, + g, + h, + 1, +} +]] + +TEST [[ +::LABEL:: +goto LABEL +goto NEXT +::NEXT:: +]] + +TEST [[ +a, b, c = 1, 2, ... +]] + +TEST [[ +local a, b, c = 1, 2, ... +]] + +TEST [[ +a[#a+1] = 1 +]] + +TEST [[ +xx(a, b, 2, 3, ...) +]] + +TEST [[ +if a then +elseif b then +elseif c then +else +end +]] + +TEST [[ +for i = 1, 10, 1 do +end +]] + +TEST [[ +for a, b, c in pairs(t) do +end +]] + +TEST [[ +while true do +end +]] + +TEST [[ +repeat +until true +]] + +TEST [[ +function xx:yy(a, b, c, ...) +end +]] + +TEST [[ +local function xx(a, b, c, ...) +end +]] + +TEST [[ +local v = 1 +local function xx() + print(v) +end +local v = 2 +xx() +]] + +TEST [[ +return { + 1, 2, 3 +} +]] + +TEST [[ +return function () +end +]] + +TEST [[ +t[...] = 1 +]] + +TEST [[ +return { + [...] = ... +} +]] + +TEST [[ +-- 选取单位 +---@param center point +---@param radius number +---@param height number +---@return unit[] +function scene:selectByCylinder(center, radius, height) +end +]] + +TEST [[ +local x = , +]] + +TEST [[ +---@type any|fun():nil +local t +]] |