Fix text
Some checks failed
Test / build (push) Waiting to run
Build / build (push) Has been cancelled

This commit is contained in:
Chuck Smith
2024-03-23 10:00:52 -04:00
parent ef8c8f8f04
commit 16ca2acf49

View File

@@ -139,10 +139,10 @@ func TestNextToken(t *testing.T) {
{token.IDENT, "d"},
{token.DOT, "."},
{token.IDENT, "foo"},
{token.BitwiseAND, "&"},
{token.BitwiseOR, "|"},
{token.BitwiseXOR, "^"},
{token.BitwiseNOT, "~"},
{token.BITWISE_AND, "&"},
{token.BITWISE_OR, "|"},
{token.BITWISE_XOR, "^"},
{token.BITWISE_NOT, "~"},
{token.NOT, "!"},
{token.AND, "&&"},
{token.OR, "||"},