summaryrefslogtreecommitdiff
path: root/script-beta/core/diagnostics/lowercase-global.lua
blob: bc48e1e69c926b9c0d0216d169ba6dacf1b20913 (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
33
34
35
36
37
38
39
local files   = require 'files'
local guide   = require 'parser.guide'
local lang    = require 'language'
local config  = require 'config'
local library = require 'library'

-- 不允许定义首字母小写的全局变量(很可能是拼错或者漏删)
return function (uri, callback)
    local ast = files.getAst(uri)
    if not ast then
        return
    end

    local definedGlobal = {}
    for name in pairs(config.config.diagnostics.globals) do
        definedGlobal[name] = true
    end
    for name in pairs(library.global) do
        definedGlobal[name] = true
    end

    guide.eachSourceType(ast.ast, 'setglobal', function (source)
        local name = guide.getName(source)
        if definedGlobal[name] then
            return
        end
        local first = name:match '%w'
        if not first then
            return
        end
        if first:match '%l' then
            callback {
                start   = source.start,
                finish  = source.finish,
                message = lang.script.DIAG_LOWERCASE_GLOBAL,
            }
        end
    end)
end