mirror of
https://github.com/cwinfo/matterbridge.git
synced 2024-11-13 03:20: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 = "LOCAL"
|
||
|
ScopeBuiltin = "BUILTIN"
|
||
|
ScopeFree = "FREE"
|
||
|
)
|