Explain what approach would you use in panic mode eror recovery
Answers
Answered by
0
Answer:
When a parser encounters an error anywhere in the statement, it ignores the rest of the statement by not processing input from erroneous input to delimiter, such as semi-colon. This is the easiest way of error-recovery and also, it prevents the parser from developing infinite loops.
Similar questions