destroy method

dynamic destroy()
inherited

Deallocates a parser's resources

Implementation

destroy() {
  if (this.reconstructor != null) {
    this.reconstructor!.finishedReconstruction();
    this.reconstructor = null;
  }
}