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

ProtectStatement() public method

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