diff options
Diffstat (limited to 'script/core/hint.lua')
-rw-r--r-- | script/core/hint.lua | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/script/core/hint.lua b/script/core/hint.lua index 008349ad..3f97586e 100644 --- a/script/core/hint.lua +++ b/script/core/hint.lua @@ -34,7 +34,8 @@ local function typeHint(uri, edits, start, finish) end end local infer = vm.getInferType(source, 0) - if infer == 'any' then + if infer == 'any' + or infer == 'any' then return end local src = source |