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;
1224 ast_compound_statement::print(void) const in print()1236 ast_compound_statement::ast_compound_statement(int new_scope, in ast_compound_statement() function in ast_compound_statement
117 ast_compound_statement *compound_statement;2530 $$ = new(ctx) ast_compound_statement(true, NULL);2540 $$ = new(ctx) ast_compound_statement(true, $3);2555 $$ = new(ctx) ast_compound_statement(false, NULL);2561 $$ = new(ctx) ast_compound_statement(false, $2);
2285 ast_compound_statement::hir(exec_list *instructions, in hir()