7 lines
85 B
Go
7 lines
85 B
Go
package compiler
|
|
|
|
type Symbol struct {
|
|
Name string
|
|
Scope SymbolScope
|
|
Index int
|
|
}
|