More refactoring, getting rid of meson in favor of just powershell scripts

This commit is contained in:
2023-08-19 08:21:28 -04:00
parent aa928ff446
commit 32a910515e
25 changed files with 731 additions and 304 deletions

View File

@ -214,7 +214,7 @@ struct AST
- sizeof(ModuleFlag)
- sizeof(u32)
)
/ sizeof(SpecifierT) -1; // -1 for 4 extra bytes
/ sizeof(SpecifierT) - 1; // -1 for 4 extra bytes
union {
struct

View File

@ -1409,7 +1409,7 @@ CodeAttributes parse_attributes()
using namespace Parser;
push_scope();
Token start;
Token start = NullToken;
s32 len = 0;
if ( check(TokType::Attribute_Open) )
@ -3186,7 +3186,7 @@ CodeConstructor parse_constructor()
{
eat( TokType::Assign_Classifer );
Token initializer_list_tok;
Token initializer_list_tok = NullToken;
s32 level = 0;
while ( left && ( currtok.Type != TokType::BraceCurly_Open || level > 0 ) )