private static property Escaper::$escaped

File

drupal/core/vendor/symfony/yaml/Symfony/Component/Yaml/Escaper.php, line 34

Class

Escaper
Escaper encapsulates escaping rules for single and double-quoted YAML strings.

Namespace

Symfony\Component\Yaml

Code

private static $escaped = array(
  '\\"',
  '\\\\',
  "\\0",
  "\\x01",
  "\\x02",
  "\\x03",
  "\\x04",
  "\\x05",
  "\\x06",
  "\\a",
  "\\b",
  "\\t",
  "\\n",
  "\\v",
  "\\f",
  "\\r",
  "\\x0e",
  "\\x0f",
  "\\x10",
  "\\x11",
  "\\x12",
  "\\x13",
  "\\x14",
  "\\x15",
  "\\x16",
  "\\x17",
  "\\x18",
  "\\x19",
  "\\x1a",
  "\\e",
  "\\x1c",
  "\\x1d",
  "\\x1e",
  "\\x1f",
  "\\N",
  "\\_",
  "\\L",
  "\\P",
);