ACSE 2.0.2
Advanced Compiler System for Education (basic documentation)
Loading...
Searching...
No Matches
Semantic Definitions

Structure definitions used for semantic analysis. More...

Data Structures

struct  t_ifStmt
 
struct  t_whileStmt
 

Detailed Description

Structure definitions used for semantic analysis.


Data Structure Documentation

◆ t_ifStmt

struct 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

struct 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.