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

CaseStatement() public method

public CaseStatement ( Expression test, NodeList whenPartList, StatementList elsePart, Location location ) : System
test Expression
whenPartList NodeList
elsePart StatementList
location Location
return System
        public CaseStatement(Expression test,
                             NodeList whenPartList,
                             StatementList elsePart,
                             Location location)
            : base(location)
        {
            this.test = test;
            this.whenPartList = whenPartList;
            this.elsePart = elsePart;
        }