fleshed out GetVar, added Token stack collection, started printing module

This commit is contained in:
Aidan Hahn 2019-11-28 08:57:12 -08:00
parent 516fda54b3
commit 84013cb4a0
No known key found for this signature in database
GPG key ID: 327711E983899316
6 changed files with 89 additions and 2 deletions

View file

@ -14,7 +14,7 @@ const (
type Token struct {
next *Token
tag parse_tag
tag token_t
int position
_inner interface{}
}