clean up build errors

This commit is contained in:
Aidan 2020-06-20 22:56:22 -07:00
parent 72e1275e48
commit 30481d4f78
No known key found for this signature in database
GPG key ID: 327711E983899316
3 changed files with 13 additions and 14 deletions

View file

@ -19,7 +19,7 @@ package ast
type VarTable map[string]*Token
func (VarTable vt) GetVar(arg string) *Token {
func (vt VarTable) GetVar(arg string) *Token {
val, ok := vt[arg]
if !ok {
return nil