xgo/compiler/symbol.go

9 lines
136 B
Go
Raw Normal View History

2019-01-09 10:17:42 +03:00
package compiler
// Symbol represents a symbol in the symbol table.
2019-01-09 10:17:42 +03:00
type Symbol struct {
Name string
Scope SymbolScope
Index int
}