test262-automation 24f861721f [javascriptcore-test262-automation] Updated curation log with latest revision sha's from export and changed files.
sourceRevisionAtLastExport: 8bfa53d50 targetRevisionAtLastExport: 8bc4e38a
2018-07-29 23:55:12 -04:00

11 lines
319 B
JavaScript

// This test that . followed by fixed character terms works with non-BMP characters
if (!/^.-clef/u.test("\u{1D123}-clef"))
throw "Should have matched string with leading non-BMP with BOL anchored . in RE";
if (!/c.lef/u.test("c\u{1C345}lef"))
throw "Should have matched string with non-BMP with . in RE";