package compiler type SymbolKind int const ( SymbolKindVariable SymbolKind = iota ) type Symbol struct { kind SymbolKind name string localIndex int }