Searched refs:ast_compound_statement (Results 1 – 4 of 4) sorted by relevance
432 class ast_compound_statement : public ast_node {434 ast_compound_statement(int new_scope, ast_node *statements);1194 ast_compound_statement *body;
1161 ast_compound_statement::print(void) const in print()1173 ast_compound_statement::ast_compound_statement(int new_scope, in ast_compound_statement() function in ast_compound_statement
114 ast_compound_statement *compound_statement;2385 $$ = new(ctx) ast_compound_statement(true, NULL);2395 $$ = new(ctx) ast_compound_statement(true, $3);2410 $$ = new(ctx) ast_compound_statement(false, NULL);2416 $$ = new(ctx) ast_compound_statement(false, $2);
2215 ast_compound_statement::hir(exec_list *instructions, in hir()