Antlr4.StringTemplate.Compiler.TemplateLexer.TemplateLexer C# (CSharp) Метод

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

public TemplateLexer ( Antlr4.StringTemplate.Misc.ErrorManager errMgr, ICharStream input, IToken templateToken, char delimiterStartChar, char delimiterStopChar ) : System.Collections.Generic
errMgr Antlr4.StringTemplate.Misc.ErrorManager
input ICharStream
templateToken IToken
delimiterStartChar char
delimiterStopChar char
Результат System.Collections.Generic
        public TemplateLexer(ErrorManager errMgr, ICharStream input, IToken templateToken, char delimiterStartChar, char delimiterStopChar)
        {
            this.errMgr = errMgr;
            this.input = input;
            c = (char)input.LA(1); // prime lookahead
            this.templateToken = templateToken;
            this.delimiterStartChar = delimiterStartChar;
            this.delimiterStopChar = delimiterStopChar;
        }

Same methods

TemplateLexer::TemplateLexer ( Antlr4.StringTemplate.Misc.ErrorManager errMgr, ICharStream input, IToken templateToken ) : System.Collections.Generic
TemplateLexer::TemplateLexer ( ICharStream input ) : System.Collections.Generic