reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

References

unittests/Support/YAMLParserTest.cpp
   51   ExpectParseError("Not closing array", "[");
   52   ExpectParseError("Not closing array", "  [  ");
   53   ExpectParseError("Not closing array", "  [x");
   75   ExpectParseError("Missing close on empty", "[{]");
   76   ExpectParseError("Missing close after pair", "[{\"a\":\"b\"]");
   80   ExpectParseError("Missing colon between key and value", "[{\"a\"\"/b\"}]");
   81   ExpectParseError("Missing colon between key and value", "[{\"a\" \"b\"}]");
   85   ExpectParseError("Missing open quote", "[{a\":\"b\"}]");
   86   ExpectParseError("Missing closing quote", "[{\"a\":\"b}]");
  109   ExpectParseError(
  153   ExpectParseError("Invalid block scalar header", "test: | failure");
  154   ExpectParseError("Invalid line indentation", "test: |\n  First line\n Error");
  155   ExpectParseError("Long leading space line", "test: |\n   \n  Test\n");
  171   ExpectParseError("In string starting with EOF", "[\"");
  172   ExpectParseError("In string hitting EOF", "[\"   ");
  173   ExpectParseError("In string escaping EOF", "[\"  \\");
  174   ExpectParseError("In array starting with EOF", "[");
  175   ExpectParseError("In array element starting with EOF", "[[], ");
  176   ExpectParseError("In array hitting EOF", "[[] ");
  177   ExpectParseError("In array hitting EOF", "[[]");
  178   ExpectParseError("In object hitting EOF", "{\"\"");
  182   ExpectParseError("KeyValueNode with null key", "? \"\n:");
  183   ExpectParseError("KeyValueNode with null value", "test: '");
  204   ExpectParseError((Twine("When parsing string \"") + String + "\"").str(),