C# Class AST.DoWhileStmt

Do-while Stmt do { body } while (cond); cond must be of scalar type
Inheritance: Stmt
Show file Open project: phisiart/C-Compiler Class Usage Examples

Public Methods

Method Description
Create ( Stmt body, Expr cond ) : Stmt
DoWhileStmt ( Stmt body, Expr cond ) : System
GetStmt ( ABT env ) : ABT.Stmt>.Tuple

Method Details

Create() public static method

public static Create ( Stmt body, Expr cond ) : Stmt
body Stmt
cond Expr
return Stmt

DoWhileStmt() public method

public DoWhileStmt ( Stmt body, Expr cond ) : System
body Stmt
cond Expr
return System

GetStmt() public method

public GetStmt ( ABT env ) : ABT.Stmt>.Tuple
env ABT
return ABT.Stmt>.Tuple