Babel.Compiler.TypecaseStatement.TypecaseStatement C# (CSharp) Méthode

TypecaseStatement() public méthode

public TypecaseStatement ( LocalExpression variable, NodeList whenPartList, StatementList elsePart, Location location ) : System
variable LocalExpression
whenPartList NodeList
elsePart StatementList
location Location
Résultat System
        public TypecaseStatement(LocalExpression variable,
                                 NodeList whenPartList,
                                 StatementList elsePart,
                                 Location location)
            : base(location)
        {
            this.variable = variable;
            this.whenPartList = whenPartList;
            this.elsePart = elsePart;
        }