xgo/compiler/symbol.go
2019-01-08 23:17:42 -08:00

7 lines
85 B
Go

package compiler
type Symbol struct {
Name string
Scope SymbolScope
Index int
}