Lecture 5

  1. Syntax Error Recovery
  2. Parsing: The Big Picture

1.0 - Syntax Error Recovery

1.1 - Recovery Strategy for Recursive-Descent Parsing

1.1.1 - Recovery Strategy for Matching a Single Token (Terminal Symbol)

1.1.2 - Recovery Strategy for Parse Method (Non-Terminal Symbol)

1.1.3 - Implementation using Method Parse

We don’t want to hard-code the behaviour that we proposed before for every non-terminal symbol. Let’s create a pattern that does this more succinctly.

void parseN(TokenSet recoverSet) {
  parse("N", N_START_SET, recoverSet, () -> {
    recog(N)
  });
}

1.2 - Parsing: The Big Picture

1.2.1 - Parsing and Building an AST

1.2.2 - Construction of Expression Parse Method

Notice that in the code above, we have used exp.parse. How do we construct this?