summaryrefslogtreecommitdiff
path: root/server-beta/src/core/diagnostics/redefined-local.lua
blob: f617679488b797a00d562383f4cec8f31b3c838e (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'

return function (uri, callback)
    local ast = files.getAst(uri)
    if not ast then
        return
    end
    guide.eachSourceType(ast.ast, 'local', function (source)
        local name = source[1]
        if name == '_'
        or name == '_ENV' then
            return
        end
        local exist = guide.getLocal(source, name, source.start-1)
        if exist then
            callback {
                start   = source.start,
                finish  = source.finish,
                message = lang.script('DIAG_REDEFINED_LOCAL', name),
                related = {
                    {
                        start  = exist.start,
                        finish = exist.finish,
                        uri    = uri,
                    }
                },
            }
        end
    end)
end