pretty method

String pretty(
  1. String text, [
  2. List<String>? stack,
  3. Position? pos,
  4. Map<String, List<T>>? commondefs,
])

Implementation

String pretty(String text,
    [List<String>? stack, Position? pos, Map<String, List<T>>? commondefs]) {
  return processedString(
      unprocessedTokens: getTokensUnprocessed(text, stack, pos, commondefs));
}