Boo.Lang.Compiler.Ast.IfStatement.IfStatement C# (CSharp) Method

IfStatement() public method

public IfStatement ( LexicalInfo token, Expression condition, Block trueBlock, Block falseBlock ) : System
token LexicalInfo
condition Expression
trueBlock Block
falseBlock Block
return System
        public IfStatement(LexicalInfo token, Expression condition, Block trueBlock, Block falseBlock)
            : base(token)
        {
            this.Condition = condition;
            this.TrueBlock = trueBlock;
            this.FalseBlock = falseBlock;
        }

Same methods

IfStatement::IfStatement ( ) : System
IfStatement::IfStatement ( Expression condition, Block trueBlock, Block falseBlock ) : System
IfStatement::IfStatement ( LexicalInfo token ) : System
IfStatement