mirror of https://github.com/svaarala/duktape.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
158 B
13 lines
158 B
/*
|
|
* Spot check of case insensitive backref matching.
|
|
*/
|
|
|
|
var m;
|
|
|
|
/*===
|
|
fooFOO foo FOO
|
|
===*/
|
|
|
|
m = /^(...)(\1)$/i.exec('fooFOO');
|
|
print(m[0], m[1], m[2]);
|
|
|
|
|