1 // Copyright 2009 the Sputnik authors. All rights reserved.
2 // This code is governed by the BSD license found in the LICENSE file.
6 The production QuantifierPrefix :: { DecimalDigits , DecimalDigits }
8 es5id: 15.10.2.7_A1_T11
9 description: Execute /bx{0,93}c/.exec("aaabbbbcccddeeeefffff") and check results
12 var __executed = /bx{0,93}c/.exec("aaabbbbcccddeeeefffff");
14 var __expected = ["bc"];
16 __expected.input = "aaabbbbcccddeeeefffff";
21 'The value of __executed.length is expected to equal the value of __expected.length'
27 'The value of __executed.index is expected to equal the value of __expected.index'
33 'The value of __executed.input is expected to equal the value of __expected.input'
36 for(var index=0; index<__expected.length; index++) {
40 'The value of __executed[index] is expected to equal the value of __expected[index]'