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.
48 lines
763 B
48 lines
763 B
|
|
var r, t;
|
|
|
|
/*===
|
|
abbababbab,b object
|
|
===*/
|
|
|
|
try {
|
|
r = eval("/^(a|b){10}$/");
|
|
t = r.exec('abbababbab');
|
|
print(t, typeof t);
|
|
} catch (e) {
|
|
print(e.name);
|
|
}
|
|
|
|
/*===
|
|
null object
|
|
===*/
|
|
|
|
try {
|
|
r = eval("/^(a|b){1000}$/");
|
|
t = r.exec('abbababbab');
|
|
print(t, typeof t);
|
|
} catch (e) {
|
|
print(e.name);
|
|
}
|
|
|
|
/*===
|
|
Error
|
|
===*/
|
|
|
|
/* This is supposed to work by the specification, but the implementation
|
|
* imposes an internal maximum on atom copy count.
|
|
*
|
|
* So we test for that behavior. Rhino and V8 (and others) will thus
|
|
* intentionally fail this test.
|
|
*/
|
|
|
|
/* FIXME: Error -> InternalError or RangeError? */
|
|
|
|
try {
|
|
r = eval("/^(a|b){100000}$/");
|
|
t = r.exec('abbababbab');
|
|
print(t, typeof t);
|
|
} catch (e) {
|
|
print(e.name);
|
|
}
|
|
|
|
|