Antlr4.Runtime.Atn.ATN.ATN C# (CSharp) Method

ATN() public method

Used for runtime deserialization of ATNs from strings
public ATN ( ATNType grammarType, int maxTokenType ) : System
grammarType ATNType
maxTokenType int
return System
        public ATN(ATNType grammarType, int maxTokenType)
        {
            this.grammarType = grammarType;
            this.maxTokenType = maxTokenType;
        }