b79fd4f7ef
* addressing golint issues * fix all lint issues.
12 lines
266 B
Go
12 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"
|
|
)
|