Lines Matching refs:toString
30 PASS /[\x{41}]/.exec("yA1").toString() is "1"
31 PASS /\x1g/.exec("x1g").toString() is "x1g"
32 PASS /[\x1g]/.exec("x").toString() is "x"
33 PASS /[\x1g]/.exec("1").toString() is "1"
34 PASS /\2147483648/.exec(String.fromCharCode(140) + "7483648").toString() is String.fromCharCode(140…
35 PASS /\4294967296/.exec("\"94967296").toString() is "\"94967296"
36 FAIL /\8589934592/.exec("\\8589934592").toString() should be \8589934592. Was 8589934592.
44 PASS /\060/.exec("y01").toString() is "0"
45 PASS /[\060]/.exec("y01").toString() is "0"
46 PASS /\606/.exec("y06").toString() is "06"
47 PASS /[\606]/.exec("y06").toString() is "0"
48 PASS /[\606]/.exec("y6").toString() is "6"
49 PASS /\101/.exec("yA1").toString() is "A"
50 PASS /[\101]/.exec("yA1").toString() is "A"
51 PASS /\1011/.exec("yA1").toString() is "A1"
52 PASS /[\1011]/.exec("yA1").toString() is "A"
53 PASS /[\1011]/.exec("y1").toString() is "1"
54 PASS /\10q/.exec("y" + String.fromCharCode(8) + "q").toString() is String.fromCharCode(8) + "q"
55 PASS /[\10q]/.exec("y" + String.fromCharCode(8) + "q").toString() is String.fromCharCode(8)
56 PASS /\1q/.exec("y" + String.fromCharCode(1) + "q").toString() is String.fromCharCode(1) + "q"
57 PASS /[\1q]/.exec("y" + String.fromCharCode(1) + "q").toString() is String.fromCharCode(1)
58 PASS /[\1q]/.exec("yq").toString() is "q"
59 FAIL /\8q/.exec("\\8q").toString() should be \8q. Was 8q.
60 PASS /[\8q]/.exec("y8q").toString() is "8"
61 PASS /[\8q]/.exec("yq").toString() is "q"
62 PASS /(x)\1q/.exec("xxq").toString() is "xxq,x"
63 PASS /(x)[\1q]/.exec("xxq").toString() is "xq,x"
64 PASS /(x)[\1q]/.exec("xx" + String.fromCharCode(1)).toString() is "x" + String.fromCharCode(1) + ",…