xgo/compiler/symbol.go

8 lines
85 B
Go
Raw Normal View History

2019-01-09 10:17:42 +03:00
package compiler
type Symbol struct {
Name string
Scope SymbolScope
Index int
}