Table of Contents

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 Expression
statements Block
elseStatement ElseStatement

Properties

Condition

public Expression Condition { get; }

Property Value

Expression

Else

public ElseStatement? Else { get; }

Property Value

ElseStatement

Statements

public Block Statements { get; }

Property Value

Block