b79fd4f7ef
* addressing golint issues * fix all lint issues.
8 lines
136 B
Go
8 lines
136 B
Go
package compiler
|
|
|
|
// Symbol represents a symbol in the symbol table.
|
|
type Symbol struct {
|
|
Name string
|
|
Scope SymbolScope
|
|
Index int
|
|
}
|