1 // Copyright 2009 the Sputnik authors. All rights reserved.
2 // This code is governed by the BSD license found in the LICENSE file.
6 An escape sequence of the form \ followed by a nonzero decimal number n
7 matches the result of the nth set of capturing parentheses (see
10 description: Execute /(a*)b\1+/.exec("baaac") and check results
13 var __executed = /(a*)b\1+/.exec("baaac");
15 var __expected = ["b", ""];
17 __expected.input = "baaac";
22 'The value of __executed.length is expected to equal the value of __expected.length'
28 'The value of __executed.index is expected to equal the value of __expected.index'
34 'The value of __executed.input is expected to equal the value of __expected.input'
37 for(var index=0; index<__expected.length; index++) {
41 'The value of __executed[index] is expected to equal the value of __expected[index]'