Searched refs:ast_compound_statement (Results 1 – 4 of 4) sorted by relevance
437 class ast_compound_statement : public ast_node {439 ast_compound_statement(int new_scope, ast_node *statements);1253 ast_compound_statement *body;
1232 ast_compound_statement::print(void) const in print()1244 ast_compound_statement::ast_compound_statement(int new_scope, in ast_compound_statement() function in ast_compound_statement
116 ast_compound_statement *compound_statement;2529 $$ = new(ctx) ast_compound_statement(true, NULL);2539 $$ = new(ctx) ast_compound_statement(true, $3);2554 $$ = new(ctx) ast_compound_statement(false, NULL);2560 $$ = new(ctx) ast_compound_statement(false, $2);
2299 ast_compound_statement::hir(exec_list *instructions, in hir()