String::is_equal added (bad last commit)

This commit is contained in:
2024-12-01 13:29:33 -05:00
parent f61c1c560d
commit 9e88cb8724
6 changed files with 302 additions and 7 deletions

View File

@ -165,6 +165,7 @@ struct Code
char const* debug_str(); \
Code duplicate(); \
bool is_equal( Code other ); \
bool is_body(); \
bool is_valid(); \
void set_global(); \
String to_string(); \
@ -259,6 +260,7 @@ struct AST
Code& entry ( u32 idx );
bool has_entries();
bool is_equal ( AST* other );
bool is_body();
char const* type_str();
bool validate_body();