コード例 #1
0
ファイル: ast.cpp プロジェクト: coopersimon/Compiler
void n_comp_stat::code_gen(status& stat, std::ostream& out)
{
	stat.new_scope();
	if (left != NULL)
		left->code_gen(stat, out);
	if (right != NULL)
		right->code_gen(stat, out);
	stat.delete_scope();
	return;
}