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.IDENT, "d"},
{token.DOT, "."}, {token.DOT, "."},
{token.IDENT, "foo"}, {token.IDENT, "foo"},
{token.BitwiseAND, "&"}, {token.BITWISE_AND, "&"},
{token.BitwiseOR, "|"}, {token.BITWISE_OR, "|"},
{token.BitwiseXOR, "^"}, {token.BITWISE_XOR, "^"},
{token.BitwiseNOT, "~"}, {token.BITWISE_NOT, "~"},
{token.NOT, "!"}, {token.NOT, "!"},
{token.AND, "&&"}, {token.AND, "&&"},
{token.OR, "||"}, {token.OR, "||"},