ExpectError 408 test/cctest/test-regexp.cc ExpectError("\\", kEndBackslash);
ExpectError 410 test/cctest/test-regexp.cc ExpectError("(foo", kUnterminatedGroup);
ExpectError 412 test/cctest/test-regexp.cc ExpectError("(?", kInvalidGroup);
ExpectError 414 test/cctest/test-regexp.cc ExpectError("[", kUnterminatedCharacterClass);
ExpectError 415 test/cctest/test-regexp.cc ExpectError("[a-", kUnterminatedCharacterClass);
ExpectError 417 test/cctest/test-regexp.cc ExpectError("*", kNothingToRepeat);
ExpectError 418 test/cctest/test-regexp.cc ExpectError("?", kNothingToRepeat);
ExpectError 419 test/cctest/test-regexp.cc ExpectError("+", kNothingToRepeat);
ExpectError 420 test/cctest/test-regexp.cc ExpectError("{1}", kNothingToRepeat);
ExpectError 421 test/cctest/test-regexp.cc ExpectError("{1,2}", kNothingToRepeat);
ExpectError 422 test/cctest/test-regexp.cc ExpectError("{1,}", kNothingToRepeat);
ExpectError 433 test/cctest/test-regexp.cc ExpectError(*many_captures, kTooManyCaptures);