Antlr4.Codegen.Model.ExceptionClause.ExceptionClause C# (CSharp) Метод

ExceptionClause() публичный Метод

public ExceptionClause ( OutputModelFactory factory, ActionAST catchArg, ActionAST catchAction ) : Antlr4.Tool.Ast
factory OutputModelFactory
catchArg Antlr4.Tool.Ast.ActionAST
catchAction Antlr4.Tool.Ast.ActionAST
Результат Antlr4.Tool.Ast
        public ExceptionClause(OutputModelFactory factory,
                               ActionAST catchArg,
                               ActionAST catchAction)
            : base(factory, catchArg)
        {
            this.catchArg = new Action(factory, catchArg);
            this.catchAction = new Action(factory, catchAction);
        }
    }
ExceptionClause