summaryrefslogtreecommitdiff
path: root/script/core/diagnostics/unknown-cast-variable.lua
blob: cfa25ed846629ac4d5b62cef535e9379fde936a7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
local files   = require 'files'
local guide   = require 'parser.guide'
local lang    = require 'language'
local vm      = require 'vm'
local await   = require 'await'

---@async
return function (uri, callback)
    local state = files.getState(uri)
    if not state then
        return
    end

    if not state.ast.docs then
        return
    end

    for _, doc in ipairs(state.ast.docs) do
        if doc.type == 'doc.cast' then
            await.delay()
            local defs = vm.getDefs(doc.loc)
            local loc = defs[1]
            if not loc then
                callback {
                    start   = doc.loc.start,
                    finish  = doc.loc.finish,
                    message = lang.script('DIAG_UNKNOWN_CAST_VARIABLE', doc[1])
                }
            end
        end
    end
end