kEscapeSequences top-level constant

Map<String, String> const kEscapeSequences

Escape sequences allowed in TOON

Implementation

const Map<String, String> kEscapeSequences = {
  '\\': '\\\\',
  '"': '\\"',
  '\n': '\\n',
  '\r': '\\r',
  '\t': '\\t',
};