15 lines
352 B
Text
15 lines
352 B
Text
|
|
==========================================
|
||
|
|
recovers from errors in if statements
|
||
|
|
==========================================
|
||
|
|
stuff();
|
||
|
|
if (*nonsense*) {
|
||
|
|
*more-nonsense*;
|
||
|
|
}
|
||
|
|
moreStuff();
|
||
|
|
---
|
||
|
|
(program
|
||
|
|
(statement (function_call (identifier)))
|
||
|
|
(if_statement (ERROR)
|
||
|
|
(statement_block (ERROR)))
|
||
|
|
(statement (function_call (identifier))))
|