about summary refs log tree commit diff
path: root/pkg/lang/compiler/symbol.go
blob: 03838da26c44986fb4c4fd66680e5040b11a40a4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
package compiler

type SymbolKind int

const (
	SymbolKindVariable SymbolKind = iota
)

type Symbol struct {
	kind       SymbolKind
	name       string
	localIndex int
}