WIP: getting function parameter parse to work

Will continue prob next week or two
This commit is contained in:
2023-07-09 13:07:30 -04:00
parent 6da615e6da
commit 9df177edf4
2 changed files with 14 additions and 10 deletions

View File

@ -172,14 +172,13 @@ u32 gen_sanity()
gen_sanity_file.print_fmt("\n");
// Parameters
if (0)
{
Code fwd = parse_function( code(
void test_function( int a );
void test_function_param( int a );
));
Code def = parse_function( code(
void test_function( int a, int b )
void test_function_param2( int a, int b )
{
}
));