Updated generator

This commit is contained in:
Sasha Koshka 2024-02-13 13:12:53 -05:00
parent cf40ab0707
commit b743e56c2a
1 changed files with 2 additions and 2 deletions

View File

@ -4,12 +4,12 @@ import "io"
import "testing"
import "strings"
import "git.tebibyte.media/sashakoshka/fspl/lexer"
import "git.tebibyte.media/sashakoshka/fspl/parser"
import "git.tebibyte.media/sashakoshka/fspl/analyzer"
import "git.tebibyte.media/sashakoshka/fspl/testcommon"
import "git.tebibyte.media/sashakoshka/fspl/parser/fspl"
func testString (test *testing.T, correct string, input string) {
ast := parser.Tree { }
ast := fsplParser.Tree { }
lx, err := lexer.LexReader("input.fspl", strings.NewReader(input))
if err != nil {
test.Error("lexer returned error:", err)