git-svn-id: https://svn.tlawal.org/svn/monkey@30 f6afcba9-9ef1-4bdd-9b72-7484f5705bac

This commit is contained in:
Tijani Lawal 2022-07-14 06:24:50 +00:00
parent d1863830af
commit 73eeb2001e

View File

@ -106,7 +106,7 @@ func TestIdentifierExpression(l_test *testing.T) {
l_test.Errorf("identifier.TokenLiteral not %s, got=%s", "foobar", identifier.TokenLiteral()) l_test.Errorf("identifier.TokenLiteral not %s, got=%s", "foobar", identifier.TokenLiteral())
} }
} }
func TestIntegerLiteralExpressions(l_test *testing.T) { func TestIntegerLiteralExpressions(l_test *testing.T) {
input := "5;" input := "5;"
@ -296,7 +296,6 @@ func TestOperatorPrecedenceParsing(l_test *testing.T) {
} }
} }
// Helpers // Helpers
func check_parser_errors(l_test *testing.T, l_parser *Parser) { func check_parser_errors(l_test *testing.T, l_parser *Parser) {
@ -356,4 +355,3 @@ func testLetStatement(l_test *testing.T, statement ast.Statement, name string) b
} }
return true return true
} }