rename test fixtures to syntax-fixtures

This commit is contained in:
Sebastian McKenzie
2014-10-11 22:33:08 +11:00
parent df8d8d6ebc
commit 0d5a6cb70e
232 changed files with 2 additions and 2 deletions

View File

@@ -0,0 +1,2 @@
var string = 'foo💩bar';
var match = string.match(/foo(.)bar/u);

View File

@@ -0,0 +1,2 @@
var string = 'foo\uD83D\uDCA9bar';
var match = string.match(/foo((?:[\0-\t\x0B\f\x0E-\u2027\u202A-\uD7FF\uDC00-\uFFFF]|[\uD800-\uDBFF][\uDC00-\uDFFF]|[\uD800-\uDBFF]))bar/);