test262/test/suite/ch15/15.10/15.10.6/15.10.6.2/S15.10.6.2_A5_T2.js
2011-10-03 13:04:52 -07:00

28 lines
883 B
JavaScript

// Copyright 2009 the Sputnik authors. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.
/**
* RegExp.prototype.exec behavior depends on global property.
* Let global is true and let I = If ToInteger(lastIndex).
* Then if I<0 orI>length then set lastIndex to 0 and return null
*
* @path ch15/15.10/15.10.6/15.10.6.2/S15.10.6.2_A5_T2.js
* @description Set lastIndex to 100 and call /(?:ab|cd)\d?/g.exec("aacd22 ")
*/
__re = /(?:ab|cd)\d?/g;
__re.lastIndex=100;
__executed = __re.exec("aacd22 ");
//CHECK#1
if (__executed) {
$ERROR('#1: __re = /(?:ab|cd)\\d?/g; __re.lastIndex=100; __executed = __re.exec("aacd22 "); __executed === true');
}
//CHECK#2
if (__re.lastIndex !== 0) {
$ERROR('#2: __re = /(?:ab|cd)\\d?/g; __re.lastIndex=100; __executed = __re.exec("aacd22 "); __re.lastIndex === 0. Actual: ' + (__re.lastIndex));
}