gccjitd ~master (2018-07-19T06:24:39Z)
Home
Dub
Repo
IfStatement
toy
ast
Undocumented in source.
class
IfStatement :
Statement
{
Expression
condition
;
Statement
ifbody
;
Statement
elsebody
;
this
(Expression condition, Statement ifbody, Statement elsebody);
void
compile
(Backend b);
}
Constructors
this
this
(Expression condition, Statement ifbody, Statement elsebody)
Undocumented in source.
Members
Functions
compile
void
compile
(Backend b)
Undocumented in source. Be warned that the author may not have intended to support it.
Variables
condition
Expression
condition
;
elsebody
Statement
elsebody
;
Undocumented in source.
ifbody
Statement
ifbody
;
Undocumented in source.
Inherited Members
From Statement
compile
void
compile
(Backend )
Undocumented in source. Be warned that the author may not have intended to support it.
Meta
Source
See Implementation
toy
ast
classes
AndExp
AssignStatement
BinExp
CmpExp
CompoundStatement
Expression
IfStatement
IntegerExp
Keyword
NotExp
OrExp
PrintStatement
Statement
TokenClass
VarExp
WhileStatement