stringEscapes top-level property

Map<String, String> stringEscapes
final

Used to escape characters for inclusion in compiled string literals.

Implementation

final stringEscapes = {
  '\\': '\\',
  "'": "'",
  '\n': 'n',
  '\r': 'r',
  '\u2028': 'u2028',
  '\u2029': 'u2029'
};