summaryrefslogtreecommitdiffstats
path: root/vendor/github.com/d5/tengo/compiler/symbol_scopes.go
blob: 15204b3502f1863431f8573e84ab33971ae9bea8 (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               = "LOCAL"
	ScopeBuiltin             = "BUILTIN"
	ScopeFree                = "FREE"
)