Esempio n. 1
0
void Parser::BreakStmt() {
	Match(BREAK_SYM);
	code.Break();
	Match(SEMICOLON);
}