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

OutputFile() защищенный Метод

protected OutputFile ( OutputModelFactory factory, string fileName ) : System.Collections.Generic
factory OutputModelFactory
fileName string
Результат System.Collections.Generic
        protected OutputFile(OutputModelFactory factory, string fileName)
            : base(factory)
        {
            this.fileName = fileName;
            Grammar g = factory.GetGrammar();
            grammarFileName = g.fileName;
            ANTLRVersion = AntlrTool.VERSION;
            TokenLabelType = g.GetOptionString("TokenLabelType");
            InputSymbolType = TokenLabelType;
        }