added boolean literals and tests for them (no

parsing yet)
This commit is contained in:
Karma Riuk
2025-07-11 20:55:02 +02:00
parent 8c1f4e10cd
commit 4da5f32aea
5 changed files with 93 additions and 5 deletions

View File

@@ -64,5 +64,6 @@ struct ParserFixture {
void test_identifier(ast::expression*, std::string);
void test_integer_literal(ast::expression*, int);
void test_boolean_literal(ast::expression*, bool);
void test_literal_expression(ast::expression*, std::any&);
void test_infix_expression(ast::expression*, std::any, std::string, std::any);