getUnparsedContent method

String getUnparsedContent()

Gets the unparsed portion (for debugging or displaying)

Implementation

String getUnparsedContent() {
  final total = _tokenizer.getCurrentText();
  return _lastSuccessfulPosition < total.length
      ? total.substring(_lastSuccessfulPosition)
      : "";
}