blob: e0c0d94b67206fcacda48860111106b10b21f69a (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
|
package compiler
// SymbolScope represents a symbol scope.
type SymbolScope string
// List of symbol scopes
const (
ScopeGlobal SymbolScope = "GLOBAL"
ScopeLocal SymbolScope = "LOCAL"
ScopeBuiltin SymbolScope = "BUILTIN"
ScopeFree SymbolScope = "FREE"
)
|