Antlr4.Codegen.Target.JavaTarget.GetSerializedATNSegmentLimit C# (CSharp) Метод

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

public GetSerializedATNSegmentLimit ( ) : int
Результат int
        public override int GetSerializedATNSegmentLimit()
        {
            // 65535 is the class file format byte limit for a UTF-8 encoded string literal
            // 3 is the maximum number of bytes it takes to encode a value in the range 0-0xFFFF
            return 65535 / 3;
        }