summaryrefslogtreecommitdiff
path: root/script/constant/TokenModifiers.lua
blob: b77fd386f9647d4a4c86af7a0034e0e91f1fd37f (plain)
1
2
3
4
5
6
7
8
return {
    ["declaration"]   = 1 << 0,
    ["documentation"] = 1 << 1,
    ["static"]        = 1 << 2,
    ["abstract"]      = 1 << 3,
    ["deprecated"]    = 1 << 4,
    ["readonly"]      = 1 << 5,
}