Searched refs:ast_compound_statement (Results 1 – 4 of 4) sorted by relevance
306 class ast_compound_statement : public ast_node {308 ast_compound_statement(int new_scope, ast_node *statements);801 ast_compound_statement *body;
503 ast_compound_statement::print(void) const in print()516 ast_compound_statement::ast_compound_statement(int new_scope, in ast_compound_statement() function in ast_compound_statement
72 ast_compound_statement *compound_statement;1621 $$ = new(ctx) ast_compound_statement(true, NULL);1631 $$ = new(ctx) ast_compound_statement(true, $3);1646 $$ = new(ctx) ast_compound_statement(false, NULL);1652 $$ = new(ctx) ast_compound_statement(false, $2);
1818 ast_compound_statement::hir(exec_list *instructions, in hir()