Structure definitions used for semantic analysis.
More...
Structure definitions used for semantic analysis.
◆ t_ifStmt
Utility structure used to store information about an if statement.
Definition at line 18 of file parser.h.
Data Fields |
t_label * |
lElse |
Label to the else part. |
t_label * |
lExit |
Label to the first instruction after the statement. |
◆ t_whileStmt
Utility structure used to store information about a while statement.
Definition at line 24 of file parser.h.
Data Fields |
t_label * |
lExit |
Label to the first instruction after the loop. |
t_label * |
lLoop |
Label to the beginning of the loop. |