Class IfStatement
- Namespace
- ReFuel.CVarScript.AST
- Assembly
- ReFuel.dll
public class IfStatement : Statement
- Inheritance
-
IfStatement
- Inherited Members
Constructors
IfStatement(Expression, Block, ElseStatement?)
public IfStatement(Expression condition, Block statements, ElseStatement? elseStatement)
Parameters
condition
Expressionstatements
BlockelseStatement
ElseStatement
Properties
Condition
public Expression Condition { get; }
Property Value
Else
public ElseStatement? Else { get; }
Property Value
Statements
public Block Statements { get; }