Navigation
Synopsis Disambiguation is the definition of filters on the parse trees that SyntaxDefinitions define. There are several ways of defining Disambiguation in Rascal.
Description There are generally three ways of removing ambiguity from parse forests that are produced by parsers generated from SyntaxDefinitions.
  1. The first way is to add disambiguation declarations to the SyntaxDefinition. You can choose from:
    • Priority declarations, which can be used to define the relative priority in expression languages
    • Associativity declarations, which can be used to define relative associativity between operators of expression languages
    • Follow declarations, which can be used to implement longest match using lookahead
    • Precede declarations, which can be used to implement first match using look behind
    • Reserve declarations, which allow you to finite sets of strings from a SyntaxDefinition to implement keyword reservation
  2. The second way is to add Actions that will be triggered just after parsing and allow you to trim a parse forest using any information necessary.
  3. The third way is use the Visit statement on a parse tree and implement your own filter post-parsing time, or any other kind of program that processes ParseTrees.
Is this page unclear, or have you spotted an error? Please add a comment below and help us to improve it. For all other questions and remarks, visit ask.rascal-mpl.org.