mirror of
https://github.com/cwinfo/matterbridge.git
synced 2024-11-10 19:10:26 +00:00
13 lines
266 B
Go
13 lines
266 B
Go
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"
|
|
)
|