local core = require 'core.highlight' local files = require 'files' local catch = require 'catch' local function founded(targets, results) if #targets ~= #results then return false end for _, target in ipairs(targets) do for _, result in ipairs(results) do if target[1] == result[1] and target[2] == result[2] then goto NEXT end end do return false end ::NEXT:: end return true end function TEST(script) files.removeAll() local newScript, catched = catch(script, '!') files.setText('', newScript) for _, enter in ipairs(catched['!']) do local start, finish = enter[1], enter[2] local pos = (start + finish) // 2 local positions = core('', pos) local results = {} for _, position in ipairs(positions) do results[#results+1] = { position.start, position.finish } end assert(founded(catched['!'], results)) end end TEST [[ local = 1 ]] TEST [[ local = 1 = 2 = ]] TEST [[ t. = 1 a = t. ]] TEST [[ = = ]] TEST [[ t = { [] = 1, = 1, } t[] = 1 a = t. ]] TEST [[ :: :: goto ]] TEST [[ local function f() return end ]] TEST [[ local s = ]] TEST [[ local b = ]] TEST [[ local n = ]] TEST [[ local n = ]] TEST [[ local f () ]] TEST [[ f () ]] TEST [[ return () ]] TEST [[ true true true ]] TEST [[ _ _ ]] TEST [[ i = 1, 10 ]] TEST [[ true ]] TEST [[ true ]] TEST [[ ]] TEST [[ = 1 TEST2 = 2 ]]