Concrete Syntax Tree Example
The following is an example of the construction of a concrete syntax tree for the statement
if x < 0 then z := -x else z := x
in the PL0 programming language.
- We start with the statement node as our root node as we are defining a PL0 statement.
- We know that it's a conditional statement (an IfStatement) so we add that node to the tree.
- We then expand the IfStatement node using the definitions in our grammar
- Some of the blocks are terminal (as denoted by the boxes with sharp corners) which are the leaf nodes of our Concrete Syntax Tree
- These are our lexical tokens
- Our grammar describes that
- Given this, our CST is now:
- We expand the condition node using the following definitions in our grammar:
- We then expand the Expression nodes and RelOp node based on our grammar definitions
- We then expand the statement nodes based on the following grammar definitions