serializedATN property

List<int> serializedATN

If this recognizer was generated, it will have a serialized ATN representation of the grammar.

For interpreters, we don't know their serialized ATN despite having created the interpreter from it.

Implementation

List<int> get serializedATN {
  throw UnsupportedError('there is no serialized ATN');
}