xgo/compiler/symbol_scopes.go

11 lines
199 B
Go
Raw Normal View History

2019-01-09 10:17:42 +03:00
package compiler
type SymbolScope string
const (
ScopeGlobal SymbolScope = "GLOBAL"
ScopeLocal = "LOCAL"
ScopeBuiltin = "BUILTIN"
ScopeFree = "FREE"
)