Home
last modified time | relevance | path

Searched refs:testcases (Results 1 – 25 of 914) sorted by relevance

12345678910>>...37

/external/webkit/Source/JavaScriptCore/tests/mozilla/ecma/Expressions/
D11.4.3.js46 var testcases = new Array(); variable
49testcases[testcases.length] = new TestCase( SECTION, "typeof(void(0))", "undefine… variable
50testcases[testcases.length] = new TestCase( SECTION, "typeof(null)", "object",… variable
51testcases[testcases.length] = new TestCase( SECTION, "typeof(true)", "boolean"… variable
52testcases[testcases.length] = new TestCase( SECTION, "typeof(false)", "boolean"… variable
53testcases[testcases.length] = new TestCase( SECTION, "typeof(new Boolean())", "object",… variable
54testcases[testcases.length] = new TestCase( SECTION, "typeof(new Boolean(true))", "object",… variable
55testcases[testcases.length] = new TestCase( SECTION, "typeof(Boolean())", "boolean"… variable
56testcases[testcases.length] = new TestCase( SECTION, "typeof(Boolean(false))", "boolean"… variable
57testcases[testcases.length] = new TestCase( SECTION, "typeof(Boolean(true))", "boolean"… variable
[all …]
D11.4.9.js42 var testcases = new Array(); variable
44 testcases[tc++] = new TestCase( SECTION, "!(null)", true, !(null) ); variable
45 testcases[tc++] = new TestCase( SECTION, "!(var x)", true, !(eval("var x")) ); variable
46 testcases[tc++] = new TestCase( SECTION, "!(void 0)", true, !(void 0) ); variable
48 testcases[tc++] = new TestCase( SECTION, "!(false)", true, !(false) ); variable
49 testcases[tc++] = new TestCase( SECTION, "!(true)", false, !(true) ); variable
50 testcases[tc++] = new TestCase( SECTION, "!()", true, !(eval()) ); variable
51 testcases[tc++] = new TestCase( SECTION, "!(0)", true, !(0) ); variable
52 testcases[tc++] = new TestCase( SECTION, "!(-0)", true, !(-0) ); variable
53 testcases[tc++] = new TestCase( SECTION, "!(NaN)", true, !(Number.NaN) ); variable
[all …]
D11.1.1.js38 var testcases = new Array(); variable
45 testcases[item++] = new TestCase( SECTION, variable
50 testcases[item++] = new TestCase( SECTION, variable
57 testcases[item++] = new TestCase( SECTION, variable
64 testcases[item++] = new TestCase( SECTION, variable
71 testcases[item++] = new TestCase( SECTION, variable
76 testcases[item++] = new TestCase( SECTION, variable
81 testcases[item++] = new TestCase( SECTION, variable
86 testcases[item++] = new TestCase( SECTION, variable
92 testcases[item++] = new TestCase( SECTION, variable
[all …]
/external/webkit/Source/JavaScriptCore/tests/mozilla/ecma/TypeConversion/
D9.3.1-3.js53 var testcases = new Array(); variable
59 testcases[tc++] = new TestCase( variable
73 testcases[tc++] = new TestCase( SECTION, variable
78 testcases[tc++] = new TestCase( SECTION, variable
83 testcases[tc++] = new TestCase( SECTION, variable
91 testcases[tc++] = new TestCase( SECTION, variable
96 testcases[tc++] = new TestCase( SECTION, variable
101 testcases[tc++] = new TestCase( SECTION, variable
106 testcases[tc++] = new TestCase( SECTION, variable
111 testcases[tc++] = new TestCase( SECTION, variable
[all …]
D9.2.js46 var testcases = new Array(); variable
50 testcases[tc++] = new TestCase( SECTION, "Boolean()", false, Boolean() ); variable
51testcases[tc++] = new TestCase( SECTION, "Boolean(var x)", false, Boolean(eval("… variable
52testcases[tc++] = new TestCase( SECTION, "Boolean(void 0)", false, Boolean(void 0… variable
53testcases[tc++] = new TestCase( SECTION, "Boolean(null)", false, Boolean(null) … variable
54testcases[tc++] = new TestCase( SECTION, "Boolean(false)", false, Boolean(false)… variable
55testcases[tc++] = new TestCase( SECTION, "Boolean(true)", true, Boolean(true) … variable
56testcases[tc++] = new TestCase( SECTION, "Boolean(0)", false, Boolean(0) ); variable
57testcases[tc++] = new TestCase( SECTION, "Boolean(-0)", false, Boolean(-0) ); variable
58testcases[tc++] = new TestCase( SECTION, "Boolean(NaN)", false, Boolean(Number… variable
[all …]
/external/webkit/Source/JavaScriptCore/tests/mozilla/ecma/LexicalConventions/
D7.6.js42 var testcases = new Array(); variable
45 testcases[tc++] = new TestCase( SECTION, variable
52 testcases[tc++] = new TestCase( SECTION, variable
58 testcases[tc++] = new TestCase( SECTION, variable
64 testcases[tc++] = new TestCase( SECTION, variable
70 testcases[tc++] = new TestCase( SECTION, variable
76 testcases[tc++] = new TestCase( SECTION, variable
82 testcases[tc++] = new TestCase( SECTION, variable
87 testcases[tc++] = new TestCase( SECTION, variable
92 testcases[tc++] = new TestCase( SECTION, variable
[all …]
D7.7.3-1.js47 var testcases = new Array(); variable
50 testcases[tc++] = new TestCase( SECTION, variable
55 testcases[tc++] = new TestCase( SECTION, variable
60 testcases[tc++] = new TestCase( SECTION, variable
65 testcases[tc++] = new TestCase( SECTION, variable
70 testcases[tc++] = new TestCase( SECTION, variable
75 testcases[tc++] = new TestCase( SECTION, variable
80 testcases[tc++] = new TestCase( SECTION, variable
85 testcases[tc++] = new TestCase( SECTION, variable
90 testcases[tc++] = new TestCase( SECTION, variable
[all …]
/external/webkit/Source/JavaScriptCore/tests/mozilla/js1_2/regexp/
Dspecial_characters.js39 var testcases = new Array(); variable
42testcases[count++] = new TestCase ( SECTION, "'^abcdefghi'.match(/\^abc/)", String(["^abc"]), Stri… variable
45testcases[count++] = new TestCase ( SECTION, "'abcdefghi'.match(/^abc/)", String(["abc"]), String(… variable
48testcases[count++] = new TestCase ( SECTION, "'abcdefghi'.match(/fghi$/)", String(["ghi"]), String… variable
51testcases[count++] = new TestCase ( SECTION, "'eeeefghi'.match(/e*/)", String(["eeee"]), String('e… variable
54testcases[count++] = new TestCase ( SECTION, "'abcdeeeefghi'.match(/e+/)", String(["eeee"]), Strin… variable
57testcases[count++] = new TestCase ( SECTION, "'abcdefghi'.match(/abc?de/)", String(["abcde"]), Str… variable
60testcases[count++] = new TestCase ( SECTION, "'abcdefghi'.match(/c.e/)", String(["cde"]), String('… variable
63 testcases[count++] = new TestCase ( SECTION, "'abcewirjskjdabciewjsdf'.match(/(abc).+\\1'/)", variable
67testcases[count++] = new TestCase ( SECTION, "'abcdefghi'.match(/xyz|def/)", String(["def"]), Stri… variable
[all …]
DRegExp_multiline.js39 var testcases = new Array(); variable
44 testcases[count++] = new TestCase ( SECTION, "RegExp.multiline", variable
48 testcases[count++] = new TestCase ( SECTION, "(multiline == false) '123\\n456'.match(/^4../)", variable
52testcases[count++] = new TestCase ( SECTION, "(multiline == false) 'a11\\na22\\na23\\na24'.match(/… variable
56 testcases[count++] = new TestCase ( SECTION, "(multiline == false) 'a11\na22'.match(/^.+^./)", variable
60 testcases[count++] = new TestCase ( SECTION, "(multiline == false) '123\\n456'.match(/.3$/)", variable
64testcases[count++] = new TestCase ( SECTION, "(multiline == false) 'a11\\na22\\na23\\na24'.match(/… variable
68 testcases[count++] = new TestCase ( SECTION, "(multiline == false) 'abc\ndef'.match(/c$...$/)", variable
72testcases[count++] = new TestCase ( SECTION, "(multiline == false) 'a11\\na22\\na23\\na24'.match(n… variable
76testcases[count++] = new TestCase ( SECTION, "(multiline == false) 'abc\ndef'.match(new RegExp('c$… variable
[all …]
DRegExp_multiline_as_array.js39 var testcases = new Array(); variable
44 testcases[count++] = new TestCase ( SECTION, "RegExp['$*']", variable
48 testcases[count++] = new TestCase ( SECTION, "(['$*'] == false) '123\\n456'.match(/^4../)", variable
52testcases[count++] = new TestCase ( SECTION, "(['$*'] == false) 'a11\\na22\\na23\\na24'.match(/^a.… variable
56 testcases[count++] = new TestCase ( SECTION, "(['$*'] == false) 'a11\na22'.match(/^.+^./)", variable
60 testcases[count++] = new TestCase ( SECTION, "(['$*'] == false) '123\\n456'.match(/.3$/)", variable
64testcases[count++] = new TestCase ( SECTION, "(['$*'] == false) 'a11\\na22\\na23\\na24'.match(/a..… variable
68 testcases[count++] = new TestCase ( SECTION, "(['$*'] == false) 'abc\ndef'.match(/c$...$/)", variable
72testcases[count++] = new TestCase ( SECTION, "(['$*'] == false) 'a11\\na22\\na23\\na24'.match(new … variable
76testcases[count++] = new TestCase ( SECTION, "(['$*'] == false) 'abc\ndef'.match(new RegExp('c$...… variable
[all …]
Dinterval.js39 var testcases = new Array(); variable
42 testcases[count++] = new TestCase ( SECTION, "'aaabbbbcccddeeeefffff'.match(new RegExp('b{2}c'))", variable
46 testcases[count++] = new TestCase ( SECTION, "'aaabbbbcccddeeeefffff'.match(new RegExp('b{8}'))", variable
50 testcases[count++] = new TestCase ( SECTION, "'aaabbbbcccddeeeefffff'.match(new RegExp('b{2,}c'))", variable
54 testcases[count++] = new TestCase ( SECTION, "'aaabbbbcccddeeeefffff'.match(new RegExp('b{8,}c'))", variable
58testcases[count++] = new TestCase ( SECTION, "'aaabbbbcccddeeeefffff'.match(new RegExp('b{2,3}c'))… variable
62testcases[count++] = new TestCase ( SECTION, "'aaabbbbcccddeeeefffff'.match(new RegExp('b{42,93}c'… variable
66testcases[count++] = new TestCase ( SECTION, "'aaabbbbcccddeeeefffff'.match(new RegExp('b{0,93}c')… variable
70testcases[count++] = new TestCase ( SECTION, "'aaabbbbcccddeeeefffff'.match(new RegExp('bx{0,93}c'… variable
74 testcases[count++] = new TestCase ( SECTION, "'weirwerdf'.match(new RegExp('.{0,93}'))", variable
[all …]
DignoreCase.js39 var testcases = new Array(); variable
42 testcases[count++] = new TestCase ( SECTION, "/xyz/i.ignoreCase", variable
46 testcases[count++] = new TestCase ( SECTION, "/xyz/.ignoreCase", variable
50 testcases[count++] = new TestCase ( SECTION, "'ABC def ghi'.match(/[a-z]+/ig)", variable
54 testcases[count++] = new TestCase ( SECTION, "'ABC def ghi'.match(/[a-z]+/i)", variable
58 testcases[count++] = new TestCase ( SECTION, "'ABC def ghi'.match(/([a-z]+)/ig)", variable
62 testcases[count++] = new TestCase ( SECTION, "'ABC def ghi'.match(/([a-z]+)/i)", variable
66 testcases[count++] = new TestCase ( SECTION, "'ABC def ghi'.match(/[a-z]+/)", variable
70 testcases[count++] = new TestCase ( SECTION, "(new RegExp('xyz','i')).ignoreCase", variable
74 testcases[count++] = new TestCase ( SECTION, "(new RegExp('xyz')).ignoreCase", variable
[all …]
DRegExp_dollar_number.js40 var testcases = new Array(); variable
44 testcases[count++] = new TestCase ( SECTION, "'abcdefghi'.match(/(a(b(c(d(e)f)g)h)i)/); RegExp.$1", variable
48 testcases[count++] = new TestCase ( SECTION, "'abcdefghi'.match(/(a(b(c(d(e)f)g)h)i)/); RegExp.$2", variable
52 testcases[count++] = new TestCase ( SECTION, "'abcdefghi'.match(/(a(b(c(d(e)f)g)h)i)/); RegExp.$3", variable
56 testcases[count++] = new TestCase ( SECTION, "'abcdefghi'.match(/(a(b(c(d(e)f)g)h)i)/); RegExp.$4", variable
60 testcases[count++] = new TestCase ( SECTION, "'abcdefghi'.match(/(a(b(c(d(e)f)g)h)i)/); RegExp.$5", variable
64 testcases[count++] = new TestCase ( SECTION, "'abcdefghi'.match(/(a(b(c(d(e)f)g)h)i)/); RegExp.$6", variable
72 testcases[count++] = new TestCase ( SECTION, "'" + a_to_z + "'.match((a)b(c)....(y)z); RegExp.$1", variable
74 testcases[count++] = new TestCase ( SECTION, "'" + a_to_z + "'.match((a)b(c)....(y)z); RegExp.$2", variable
76 testcases[count++] = new TestCase ( SECTION, "'" + a_to_z + "'.match((a)b(c)....(y)z); RegExp.$3", variable
[all …]
Dparentheses.js39 var testcases = new Array(); variable
42 testcases[count++] = new TestCase ( SECTION, "'abc'.match(new RegExp('(abc)'))", variable
46 testcases[count++] = new TestCase ( SECTION, "'abcdefg'.match(new RegExp('a(bc)d(ef)g'))", variable
50 testcases[count++] = new TestCase ( SECTION, "'abcdefg'.match(new RegExp('(.{3})(.{4})'))", variable
54 testcases[count++] = new TestCase ( SECTION, "'aabcdaabcd'.match(new RegExp('(aa)bcd\\1'))", variable
58 testcases[count++] = new TestCase ( SECTION, "'aabcdaabcd'.match(new RegExp('(aa).+\\1'))", variable
62 testcases[count++] = new TestCase ( SECTION, "'aabcdaabcd'.match(new RegExp('(.{2}).+\\1'))", variable
66testcases[count++] = new TestCase ( SECTION, "'123456123456'.match(new RegExp('(\\d{3})(\\d{3})\\1… variable
70 testcases[count++] = new TestCase ( SECTION, "'abcdefg'.match(new RegExp('a(..(..)..)'))", variable
74 testcases[count++] = new TestCase ( SECTION, "'abcdefg'.match(/a(..(..)..)/)", variable
[all …]
Dcharacter_class.js39 var testcases = new Array(); variable
42 testcases[count++] = new TestCase ( SECTION, "'abcde'.match(new RegExp('ab[ercst]de'))", variable
46 testcases[count++] = new TestCase ( SECTION, "'abcde'.match(new RegExp('ab[erst]de'))", variable
50 testcases[count++] = new TestCase ( SECTION, "'abcdefghijkl'.match(new RegExp('[d-h]+'))", variable
54 testcases[count++] = new TestCase ( SECTION, "'abc6defghijkl'.match(new RegExp('[1234567].{2}'))", variable
58 testcases[count++] = new TestCase ( SECTION, "'\n\n\abc324234\n'.match(new RegExp('[a-c\\d]+'))", variable
62 testcases[count++] = new TestCase ( SECTION, "'abc'.match(new RegExp('ab[.]?c'))", variable
66 testcases[count++] = new TestCase ( SECTION, "'abc'.match(new RegExp('a[b]c'))", variable
70testcases[count++] = new TestCase ( SECTION, "'a1b b2c c3d def f4g'.match(new RegExp('[a-z][^1… variable
74 testcases[count++] = new TestCase ( SECTION, "'123*&$abc'.match(new RegExp('[*&$]{3}'))", variable
[all …]
Dasterisk.js39 var testcases = new Array(); variable
42 testcases[count++] = new TestCase ( SECTION, "'abcddddefg'.match(new RegExp('d*'))", variable
46 testcases[count++] = new TestCase ( SECTION, "'abcddddefg'.match(new RegExp('cd*'))", variable
50 testcases[count++] = new TestCase ( SECTION, "'abcdefg'.match(new RegExp('cx*d'))", variable
54 testcases[count++] = new TestCase ( SECTION, "'xxxxxxx'.match(new RegExp('(x*)(x+)'))", variable
58 testcases[count++] = new TestCase ( SECTION, "'1234567890'.match(new RegExp('(\\d*)(\\d+)'))", variable
63 testcases[count++] = new TestCase ( SECTION, "'1234567890'.match(new RegExp('(\\d*)\\d(\\d+)'))", variable
68 testcases[count++] = new TestCase ( SECTION, "'xxxxxxx'.match(new RegExp('(x+)(x*)'))", variable
72 testcases[count++] = new TestCase ( SECTION, "'xxxxxxyyyyyy'.match(new RegExp('x*y+$'))", variable
76 testcases[count++] = new TestCase ( SECTION, "'abcdef'.match(/[\\d]*[\\s]*bc./)", variable
[all …]
Dquestion_mark.js39 var testcases = new Array(); variable
42 testcases[count++] = new TestCase ( SECTION, "'abcdef'.match(new RegExp('cd?e'))", variable
46 testcases[count++] = new TestCase ( SECTION, "'abcdef'.match(new RegExp('cdx?e'))", variable
50 testcases[count++] = new TestCase ( SECTION, "'pqrstuvw'.match(new RegExp('o?pqrst'))", variable
54 testcases[count++] = new TestCase ( SECTION, "'abcd'.match(new RegExp('x?y?z?'))", variable
58 testcases[count++] = new TestCase ( SECTION, "'abcd'.match(new RegExp('x?ay?bz?c'))", variable
62 testcases[count++] = new TestCase ( SECTION, "'abcd'.match(/x?ay?bz?c/)", variable
66 testcases[count++] = new TestCase ( SECTION, "'abbbbc'.match(new RegExp('b?b?b?b'))", variable
70 testcases[count++] = new TestCase ( SECTION, "'123az789'.match(new RegExp('ab?c?d?x?y?z'))", variable
74 testcases[count++] = new TestCase ( SECTION, "'123az789'.match(/ab?c?d?x?y?z/)", variable
[all …]
/external/webkit/Source/JavaScriptCore/tests/mozilla/ecma/GlobalObject/
D15.1.2.2-2.js42 var testcases = new Array(); variable
44 testcases[tc++] = new TestCase( SECTION, variable
49 testcases[tc++] = new TestCase( SECTION, variable
54 testcases[tc++] = new TestCase( SECTION, variable
59 testcases[tc++] = new TestCase( SECTION, variable
64 testcases[tc++] = new TestCase( SECTION, variable
69 testcases[tc++] = new TestCase( SECTION, variable
74 testcases[tc++] = new TestCase( SECTION, variable
79 testcases[tc++] = new TestCase( SECTION, variable
84 testcases[tc++] = new TestCase( SECTION, variable
[all …]
/external/webkit/Source/JavaScriptCore/tests/mozilla/ecma/ExecutionContexts/
D10.1.5-3.js48 var testcases = getTestCases(); variable
54 testcases[0].reason += " Object == null" ;
57 testcases[0].reason += " Function == null";
60 testcases[0].reason += " String == null";
63 testcases[0].reason += " Array == null";
66 testcases[0].reason += " Function == null";
69 testcases[0].reason += " Math == null";
72 testcases[0].reason += " Boolean == null";
75 testcases[0].reason += " Date == null";
86 testcases[0].reason += " eval == null";
[all …]
D10.1.5-1.js49 var testcases = getTestCases(); variable
52 testcases[0].reason += " Object == null" ;
55 testcases[0].reason += " Function == null";
58 testcases[0].reason += " String == null";
61 testcases[0].reason += " Array == null";
64 testcases[0].reason += " Function == null";
67 testcases[0].reason += " Math == null";
70 testcases[0].reason += " Boolean == null";
73 testcases[0].reason += " Date == null";
84 testcases[0].reason += " eval == null";
[all …]
/external/webkit/Source/JavaScriptCore/tests/mozilla/ecma/Statements/
D12.6.3-4.js66 var testcases = new Array(); variable
78 testcases[testcases.length] = new TestCase( SECTION, variable
89 testcases[testcases.length] = new TestCase( SECTION, variable
100 testcases[testcases.length] = new TestCase( SECTION, variable
111 testcases[testcases.length] = new TestCase( SECTION, variable
123 testcases[testcases.length] = new TestCase( SECTION, variable
132 testcases[testcases.length] = new TestCase( SECTION, variable
142 testcases[testcases.length] = new TestCase( SECTION, variable
151 testcases[testcases.length] = new TestCase( SECTION, variable
160 testcases[testcases.length] = new TestCase( SECTION, variable
[all …]
/external/webkit/Source/JavaScriptCore/tests/mozilla/js1_2/statements/
Dswitch2.js42 var testcases = new Array(); variable
59 testcases[count++] = new TestCase(SECTION, 'switch statement', variable
62 testcases[count++] = new TestCase(SECTION, 'switch statement', variable
65 testcases[count++] = new TestCase(SECTION, 'switch statement', variable
68 testcases[count++] = new TestCase(SECTION, 'switch statement', variable
71 testcases[count++] = new TestCase(SECTION, 'switch statement', variable
88 testcases[count++] = new TestCase(SECTION, 'switch statement', variable
91 testcases[count++] = new TestCase(SECTION, 'switch statement', variable
94 testcases[count++] = new TestCase(SECTION, 'switch statement', variable
97 testcases[count++] = new TestCase(SECTION, 'switch statement', variable
[all …]
/external/webkit/Source/JavaScriptCore/tests/mozilla/ecma/FunctionObjects/
D15.3.1.1-3.js48 var testcases = new Array(); variable
73testcases[testcases.length] = new TestCase( SECTION, "MyFunc.length", 2000, … variable
74testcases[testcases.length] = new TestCase( SECTION, "var MY_OB = eval('MyFunc(s)')", 1, … variable
75testcases[testcases.length] = new TestCase( SECTION, "var MY_OB = eval('MyFunc(s)')", 1, … variable
77testcases[testcases.length] = new TestCase( SECTION, "MyObject.length", 2000… variable
79testcases[testcases.length] = new TestCase( SECTION, "FUN1 = Function( 'a','b','c', 'return FUN1.l… variable
80testcases[testcases.length] = new TestCase( SECTION, "FUN1 = Function( 'a','b','c', 'return FUN1.l… variable
81testcases[testcases.length] = new TestCase( SECTION, "FUN1 = Function( 'a','b','c', 'return FUN1.l… variable
86 for ( tc=0; tc < testcases.length; tc++ ) {
87 testcases[tc].passed = writeTestCaseResult(
[all …]
/external/webkit/Source/JavaScriptCore/tests/mozilla/js1_2/String/
Dconcat.js39 var testcases = new Array(); variable
45testcases[count++] = new TestCase( SECTION, "aString.concat(' more')", "test string more", aSt… variable
46testcases[count++] = new TestCase( SECTION, "aString.concat(bString)", "test string another ", aSt… variable
47testcases[count++] = new TestCase( SECTION, "aString ", "test string", aSt… variable
48testcases[count++] = new TestCase( SECTION, "bString ", " another ", bSt… variable
49testcases[count++] = new TestCase( SECTION, "aString.concat(345) ", "test string345", aSt… variable
50testcases[count++] = new TestCase( SECTION, "aString.concat(true) ", "test stringtrue", aSt… variable
51testcases[count++] = new TestCase( SECTION, "aString.concat(null) ", "test stringnull", aSt… variable
62testcases[count++] = new TestCase( SECTION, "'abcde'.concat(' more')", "abcde more", 'abcde'.c… variable
63testcases[count++] = new TestCase( SECTION, "'abcde'.concat(bString)", "abcde another ", 'abcde'.c… variable
[all …]
/external/webkit/Source/JavaScriptCore/tests/mozilla/js1_2/operator/
DstrictEquality.js39 var testcases = new Array(); variable
42 testcases[count++] = new TestCase( SECTION, "('8' === 8) ", variable
45 testcases[count++] = new TestCase( SECTION, "(8 === 8) ", variable
48 testcases[count++] = new TestCase( SECTION, "(8 === true) ", variable
51 testcases[count++] = new TestCase( SECTION, "(new String('') === new String('')) ", variable
54 testcases[count++] = new TestCase( SECTION, "(new Boolean(true) === new Boolean(true))", variable
59 testcases[count++] = new TestCase( SECTION, "(anObject === anObject) ", variable
62 testcases[count++] = new TestCase( SECTION, "(anObject === { one:1 , two:2 }) ", variable
65 testcases[count++] = new TestCase( SECTION, "({ one:1 , two:2 } === anObject) ", variable
68 testcases[count++] = new TestCase( SECTION, "(null === null) ", variable
[all …]

12345678910>>...37