Babel.Compiler.IfStatement.IfStatement C# (CSharp) Method

IfStatement() public method

public IfStatement ( Expression test, Node thenPart, Node elsePart, Location location ) : System
test Expression
thenPart Node
elsePart Node
location Location
return System
        public IfStatement(Expression test,
                           Node thenPart,
                           Node elsePart,
                           Location location)
            : base(location)
        {
            this.test = test;
            this.thenPart = thenPart;
            this.elsePart = elsePart;
        }