/external/webkit/Source/JavaScriptCore/tests/mozilla/ecma/Expressions/ |
D | 11.4.3.js | 46 var testcases = new Array(); variable 49 …testcases[testcases.length] = new TestCase( SECTION, "typeof(void(0))", "undefine… variable 50 …testcases[testcases.length] = new TestCase( SECTION, "typeof(null)", "object",… variable 51 …testcases[testcases.length] = new TestCase( SECTION, "typeof(true)", "boolean"… variable 52 …testcases[testcases.length] = new TestCase( SECTION, "typeof(false)", "boolean"… variable 53 …testcases[testcases.length] = new TestCase( SECTION, "typeof(new Boolean())", "object",… variable 54 …testcases[testcases.length] = new TestCase( SECTION, "typeof(new Boolean(true))", "object",… variable 55 …testcases[testcases.length] = new TestCase( SECTION, "typeof(Boolean())", "boolean"… variable 56 …testcases[testcases.length] = new TestCase( SECTION, "typeof(Boolean(false))", "boolean"… variable 57 …testcases[testcases.length] = new TestCase( SECTION, "typeof(Boolean(true))", "boolean"… variable [all …]
|
D | 11.4.9.js | 42 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 …]
|
D | 11.1.1.js | 38 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/ |
D | 9.3.1-3.js | 53 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 …]
|
D | 9.2.js | 46 var testcases = new Array(); variable 50 testcases[tc++] = new TestCase( SECTION, "Boolean()", false, Boolean() ); variable 51 …testcases[tc++] = new TestCase( SECTION, "Boolean(var x)", false, Boolean(eval("… variable 52 …testcases[tc++] = new TestCase( SECTION, "Boolean(void 0)", false, Boolean(void 0… variable 53 …testcases[tc++] = new TestCase( SECTION, "Boolean(null)", false, Boolean(null) … variable 54 …testcases[tc++] = new TestCase( SECTION, "Boolean(false)", false, Boolean(false)… variable 55 …testcases[tc++] = new TestCase( SECTION, "Boolean(true)", true, Boolean(true) … variable 56 … testcases[tc++] = new TestCase( SECTION, "Boolean(0)", false, Boolean(0) ); variable 57 … testcases[tc++] = new TestCase( SECTION, "Boolean(-0)", false, Boolean(-0) ); variable 58 …testcases[tc++] = new TestCase( SECTION, "Boolean(NaN)", false, Boolean(Number… variable [all …]
|
/external/webkit/Source/JavaScriptCore/tests/mozilla/ecma/LexicalConventions/ |
D | 7.6.js | 42 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 …]
|
D | 7.7.3-1.js | 47 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/ |
D | special_characters.js | 39 var testcases = new Array(); variable 42 …testcases[count++] = new TestCase ( SECTION, "'^abcdefghi'.match(/\^abc/)", String(["^abc"]), Stri… variable 45 …testcases[count++] = new TestCase ( SECTION, "'abcdefghi'.match(/^abc/)", String(["abc"]), String(… variable 48 …testcases[count++] = new TestCase ( SECTION, "'abcdefghi'.match(/fghi$/)", String(["ghi"]), String… variable 51 …testcases[count++] = new TestCase ( SECTION, "'eeeefghi'.match(/e*/)", String(["eeee"]), String('e… variable 54 …testcases[count++] = new TestCase ( SECTION, "'abcdeeeefghi'.match(/e+/)", String(["eeee"]), Strin… variable 57 …testcases[count++] = new TestCase ( SECTION, "'abcdefghi'.match(/abc?de/)", String(["abcde"]), Str… variable 60 …testcases[count++] = new TestCase ( SECTION, "'abcdefghi'.match(/c.e/)", String(["cde"]), String('… variable 63 testcases[count++] = new TestCase ( SECTION, "'abcewirjskjdabciewjsdf'.match(/(abc).+\\1'/)", variable 67 …testcases[count++] = new TestCase ( SECTION, "'abcdefghi'.match(/xyz|def/)", String(["def"]), Stri… variable [all …]
|
D | RegExp_multiline.js | 39 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 52 …testcases[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 64 …testcases[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 72 …testcases[count++] = new TestCase ( SECTION, "(multiline == false) 'a11\\na22\\na23\\na24'.match(n… variable 76 …testcases[count++] = new TestCase ( SECTION, "(multiline == false) 'abc\ndef'.match(new RegExp('c$… variable [all …]
|
D | RegExp_multiline_as_array.js | 39 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 52 …testcases[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 64 …testcases[count++] = new TestCase ( SECTION, "(['$*'] == false) 'a11\\na22\\na23\\na24'.match(/a..… variable 68 testcases[count++] = new TestCase ( SECTION, "(['$*'] == false) 'abc\ndef'.match(/c$...$/)", variable 72 …testcases[count++] = new TestCase ( SECTION, "(['$*'] == false) 'a11\\na22\\na23\\na24'.match(new … variable 76 …testcases[count++] = new TestCase ( SECTION, "(['$*'] == false) 'abc\ndef'.match(new RegExp('c$...… variable [all …]
|
D | interval.js | 39 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 58 …testcases[count++] = new TestCase ( SECTION, "'aaabbbbcccddeeeefffff'.match(new RegExp('b{2,3}c'))… variable 62 …testcases[count++] = new TestCase ( SECTION, "'aaabbbbcccddeeeefffff'.match(new RegExp('b{42,93}c'… variable 66 …testcases[count++] = new TestCase ( SECTION, "'aaabbbbcccddeeeefffff'.match(new RegExp('b{0,93}c')… variable 70 …testcases[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 …]
|
D | ignoreCase.js | 39 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 …]
|
D | RegExp_dollar_number.js | 40 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 …]
|
D | parentheses.js | 39 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 66 …testcases[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 …]
|
D | character_class.js | 39 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 70 …testcases[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 …]
|
D | asterisk.js | 39 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 …]
|
D | question_mark.js | 39 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/ |
D | 15.1.2.2-2.js | 42 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/ |
D | 10.1.5-3.js | 48 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 …]
|
D | 10.1.5-1.js | 49 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/ |
D | 12.6.3-4.js | 66 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/ |
D | switch2.js | 42 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/ |
D | 15.3.1.1-3.js | 48 var testcases = new Array(); variable 73 …testcases[testcases.length] = new TestCase( SECTION, "MyFunc.length", 2000, … variable 74 …testcases[testcases.length] = new TestCase( SECTION, "var MY_OB = eval('MyFunc(s)')", 1, … variable 75 …testcases[testcases.length] = new TestCase( SECTION, "var MY_OB = eval('MyFunc(s)')", 1, … variable 77 …testcases[testcases.length] = new TestCase( SECTION, "MyObject.length", 2000… variable 79 …testcases[testcases.length] = new TestCase( SECTION, "FUN1 = Function( 'a','b','c', 'return FUN1.l… variable 80 …testcases[testcases.length] = new TestCase( SECTION, "FUN1 = Function( 'a','b','c', 'return FUN1.l… variable 81 …testcases[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/ |
D | concat.js | 39 var testcases = new Array(); variable 45 …testcases[count++] = new TestCase( SECTION, "aString.concat(' more')", "test string more", aSt… variable 46 …testcases[count++] = new TestCase( SECTION, "aString.concat(bString)", "test string another ", aSt… variable 47 …testcases[count++] = new TestCase( SECTION, "aString ", "test string", aSt… variable 48 …testcases[count++] = new TestCase( SECTION, "bString ", " another ", bSt… variable 49 …testcases[count++] = new TestCase( SECTION, "aString.concat(345) ", "test string345", aSt… variable 50 …testcases[count++] = new TestCase( SECTION, "aString.concat(true) ", "test stringtrue", aSt… variable 51 …testcases[count++] = new TestCase( SECTION, "aString.concat(null) ", "test stringnull", aSt… variable 62 …testcases[count++] = new TestCase( SECTION, "'abcde'.concat(' more')", "abcde more", 'abcde'.c… variable 63 …testcases[count++] = new TestCase( SECTION, "'abcde'.concat(bString)", "abcde another ", 'abcde'.c… variable [all …]
|
/external/webkit/Source/JavaScriptCore/tests/mozilla/js1_2/operator/ |
D | strictEquality.js | 39 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 …]
|