diff options
author | 最萌小汐 <sumneko@hotmail.com> | 2021-06-11 14:52:40 +0800 |
---|---|---|
committer | 最萌小汐 <sumneko@hotmail.com> | 2021-06-11 14:52:40 +0800 |
commit | 50e6cd02d535e12e085eab7d8bdcb4757be857f2 (patch) | |
tree | 5811e18bf8ce45ce243c388f296aebd60523e2ba /script/core/signature.lua | |
parent | 997f15620b6e4dfe6a21ed52b17ac15c4e6b9a93 (diff) | |
download | lua-language-server-50e6cd02d535e12e085eab7d8bdcb4757be857f2.zip |
rename getAst -> getState
Diffstat (limited to 'script/core/signature.lua')
-rw-r--r-- | script/core/signature.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/script/core/signature.lua b/script/core/signature.lua index 915310c0..8de1c374 100644 --- a/script/core/signature.lua +++ b/script/core/signature.lua @@ -133,7 +133,7 @@ local function skipSpace(text, offset) end return function (uri, pos) - local ast = files.getAst(uri) + local ast = files.getState(uri) if not ast then return nil end |