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

IfStatement() public method

public IfStatement ( Expression condition, Block trueBlock, Block falseBlock ) : System
condition Expression
trueBlock Block
falseBlock Block
return System
        public IfStatement(Expression condition, Block trueBlock, Block falseBlock)
            : this(Ast.LexicalInfo.Empty, condition, trueBlock, falseBlock)
        {
        }

Same methods

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