| OLD | NEW |
| (Empty) |
| 1 Tests to ensure that we can use ES reserved words as property names. | |
| 2 | |
| 3 On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE
". | |
| 4 | |
| 5 | |
| 6 PASS var true; true threw exception SyntaxError: Expected an identifier but foun
d 'true' instead. | |
| 7 PASS (function(){var true; true}); true threw exception SyntaxError: Expected an
identifier but found 'true' instead. | |
| 8 PASS var true = 42; true === 42 threw exception SyntaxError: Expected an identif
ier but found 'true' instead. | |
| 9 PASS (function(){var true = 42; true === 42}); true threw exception SyntaxError:
Expected an identifier but found 'true' instead. | |
| 10 PASS function g(true){ }; true threw exception SyntaxError: Expected an identif
ier but found 'true' instead. | |
| 11 PASS (function(){function g(true){ }; true}); true threw exception SyntaxError:
Expected an identifier but found 'true' instead. | |
| 12 PASS /true/.test(function g(true){ }) threw exception SyntaxError: Expected an
identifier but found 'true' instead. | |
| 13 PASS (function(){/true/.test(function g(true){ })}); true threw exception Synta
xError: Expected an identifier but found 'true' instead. | |
| 14 PASS try{}catch(true){}; true threw exception SyntaxError: Expected an identifie
r but found 'true' instead. | |
| 15 PASS (function(){try{}catch(true){}; true}); true threw exception SyntaxError: E
xpected an identifier but found 'true' instead. | |
| 16 PASS function true(){ }; true threw exception SyntaxError: Unexpected token 'tr
ue'. | |
| 17 PASS (function(){function true(){ }; true}); true threw exception SyntaxError:
Unexpected token 'true'. | |
| 18 PASS ({ "true": 42 }.true === 42) is true | |
| 19 PASS (function(){({ "true": 42 }.true === 42)}); true is true | |
| 20 PASS ({ true: 42 }.true === 42) is true | |
| 21 PASS (function(){({ true: 42 }.true === 42)}); true is true | |
| 22 PASS ({ get true(){}, set true(){}, parsedOkay: 42 }.parsedOkay === 42) is true | |
| 23 PASS (function(){({ get true(){}, set true(){}, parsedOkay: 42 }.parsedOkay ===
42)}); true is true | |
| 24 PASS "use strict";var true; true threw exception SyntaxError: Expected an identi
fier but found 'true' instead. | |
| 25 PASS (function(){"use strict";var true; true}); true threw exception SyntaxError
: Expected an identifier but found 'true' instead. | |
| 26 PASS "use strict";var true = 42; true === 42 threw exception SyntaxError: Expect
ed an identifier but found 'true' instead. | |
| 27 PASS (function(){"use strict";var true = 42; true === 42}); true threw exception
SyntaxError: Expected an identifier but found 'true' instead. | |
| 28 PASS "use strict";function g(true){ "use strict"; }; true threw exception Syntax
Error: Expected an identifier but found 'true' instead. | |
| 29 PASS (function(){"use strict";function g(true){ "use strict"; }; true}); true th
rew exception SyntaxError: Expected an identifier but found 'true' instead. | |
| 30 PASS "use strict";/true/.test(function g(true){ "use strict"; }) threw exception
SyntaxError: Expected an identifier but found 'true' instead. | |
| 31 PASS (function(){"use strict";/true/.test(function g(true){ "use strict"; })});
true threw exception SyntaxError: Expected an identifier but found 'true' instea
d. | |
| 32 PASS "use strict";try{}catch(true){}; true threw exception SyntaxError: Expected
an identifier but found 'true' instead. | |
| 33 PASS (function(){"use strict";try{}catch(true){}; true}); true threw exception S
yntaxError: Expected an identifier but found 'true' instead. | |
| 34 PASS "use strict";function true(){ "use strict"; }; true threw exception SyntaxE
rror: Unexpected token 'true'. | |
| 35 PASS (function(){"use strict";function true(){ "use strict"; }; true}); true thr
ew exception SyntaxError: Unexpected token 'true'. | |
| 36 PASS "use strict";({ "true": 42 }.true === 42) is true | |
| 37 PASS (function(){"use strict";({ "true": 42 }.true === 42)}); true is true | |
| 38 PASS "use strict";({ true: 42 }.true === 42) is true | |
| 39 PASS (function(){"use strict";({ true: 42 }.true === 42)}); true is true | |
| 40 PASS "use strict";({ get true(){}, set true(){}, parsedOkay: 42 }.parsedOkay ===
42) is true | |
| 41 PASS (function(){"use strict";({ get true(){}, set true(){}, parsedOkay: 42 }.pa
rsedOkay === 42)}); true is true | |
| 42 PASS var false; true threw exception SyntaxError: Expected an identifier but fou
nd 'false' instead. | |
| 43 PASS (function(){var false; true}); true threw exception SyntaxError: Expected a
n identifier but found 'false' instead. | |
| 44 PASS var false = 42; false === 42 threw exception SyntaxError: Expected an ident
ifier but found 'false' instead. | |
| 45 PASS (function(){var false = 42; false === 42}); true threw exception SyntaxErro
r: Expected an identifier but found 'false' instead. | |
| 46 PASS function g(false){ }; true threw exception SyntaxError: Expected an identi
fier but found 'false' instead. | |
| 47 PASS (function(){function g(false){ }; true}); true threw exception SyntaxError
: Expected an identifier but found 'false' instead. | |
| 48 PASS /false/.test(function g(false){ }) threw exception SyntaxError: Expected a
n identifier but found 'false' instead. | |
| 49 PASS (function(){/false/.test(function g(false){ })}); true threw exception Syn
taxError: Expected an identifier but found 'false' instead. | |
| 50 PASS try{}catch(false){}; true threw exception SyntaxError: Expected an identifi
er but found 'false' instead. | |
| 51 PASS (function(){try{}catch(false){}; true}); true threw exception SyntaxError:
Expected an identifier but found 'false' instead. | |
| 52 PASS function false(){ }; true threw exception SyntaxError: Unexpected token 'f
alse'. | |
| 53 PASS (function(){function false(){ }; true}); true threw exception SyntaxError:
Unexpected token 'false'. | |
| 54 PASS ({ "false": 42 }.false === 42) is true | |
| 55 PASS (function(){({ "false": 42 }.false === 42)}); true is true | |
| 56 PASS ({ false: 42 }.false === 42) is true | |
| 57 PASS (function(){({ false: 42 }.false === 42)}); true is true | |
| 58 PASS ({ get false(){}, set false(){}, parsedOkay: 42 }.parsedOkay === 42) is tru
e | |
| 59 PASS (function(){({ get false(){}, set false(){}, parsedOkay: 42 }.parsedOkay ==
= 42)}); true is true | |
| 60 PASS "use strict";var false; true threw exception SyntaxError: Expected an ident
ifier but found 'false' instead. | |
| 61 PASS (function(){"use strict";var false; true}); true threw exception SyntaxErro
r: Expected an identifier but found 'false' instead. | |
| 62 PASS "use strict";var false = 42; false === 42 threw exception SyntaxError: Expe
cted an identifier but found 'false' instead. | |
| 63 PASS (function(){"use strict";var false = 42; false === 42}); true threw excepti
on SyntaxError: Expected an identifier but found 'false' instead. | |
| 64 PASS "use strict";function g(false){ "use strict"; }; true threw exception Synta
xError: Expected an identifier but found 'false' instead. | |
| 65 PASS (function(){"use strict";function g(false){ "use strict"; }; true}); true t
hrew exception SyntaxError: Expected an identifier but found 'false' instead. | |
| 66 PASS "use strict";/false/.test(function g(false){ "use strict"; }) threw excepti
on SyntaxError: Expected an identifier but found 'false' instead. | |
| 67 PASS (function(){"use strict";/false/.test(function g(false){ "use strict"; })})
; true threw exception SyntaxError: Expected an identifier but found 'false' ins
tead. | |
| 68 PASS "use strict";try{}catch(false){}; true threw exception SyntaxError: Expecte
d an identifier but found 'false' instead. | |
| 69 PASS (function(){"use strict";try{}catch(false){}; true}); true threw exception
SyntaxError: Expected an identifier but found 'false' instead. | |
| 70 PASS "use strict";function false(){ "use strict"; }; true threw exception Syntax
Error: Unexpected token 'false'. | |
| 71 PASS (function(){"use strict";function false(){ "use strict"; }; true}); true th
rew exception SyntaxError: Unexpected token 'false'. | |
| 72 PASS "use strict";({ "false": 42 }.false === 42) is true | |
| 73 PASS (function(){"use strict";({ "false": 42 }.false === 42)}); true is true | |
| 74 PASS "use strict";({ false: 42 }.false === 42) is true | |
| 75 PASS (function(){"use strict";({ false: 42 }.false === 42)}); true is true | |
| 76 PASS "use strict";({ get false(){}, set false(){}, parsedOkay: 42 }.parsedOkay =
== 42) is true | |
| 77 PASS (function(){"use strict";({ get false(){}, set false(){}, parsedOkay: 42 }.
parsedOkay === 42)}); true is true | |
| 78 PASS var null; true threw exception SyntaxError: Expected an identifier but foun
d 'null' instead. | |
| 79 PASS (function(){var null; true}); true threw exception SyntaxError: Expected an
identifier but found 'null' instead. | |
| 80 PASS var null = 42; null === 42 threw exception SyntaxError: Expected an identif
ier but found 'null' instead. | |
| 81 PASS (function(){var null = 42; null === 42}); true threw exception SyntaxError:
Expected an identifier but found 'null' instead. | |
| 82 PASS function g(null){ }; true threw exception SyntaxError: Expected an identif
ier but found 'null' instead. | |
| 83 PASS (function(){function g(null){ }; true}); true threw exception SyntaxError:
Expected an identifier but found 'null' instead. | |
| 84 PASS /null/.test(function g(null){ }) threw exception SyntaxError: Expected an
identifier but found 'null' instead. | |
| 85 PASS (function(){/null/.test(function g(null){ })}); true threw exception Synta
xError: Expected an identifier but found 'null' instead. | |
| 86 PASS try{}catch(null){}; true threw exception SyntaxError: Expected an identifie
r but found 'null' instead. | |
| 87 PASS (function(){try{}catch(null){}; true}); true threw exception SyntaxError: E
xpected an identifier but found 'null' instead. | |
| 88 PASS function null(){ }; true threw exception SyntaxError: Unexpected token 'nu
ll'. | |
| 89 PASS (function(){function null(){ }; true}); true threw exception SyntaxError:
Unexpected token 'null'. | |
| 90 PASS ({ "null": 42 }.null === 42) is true | |
| 91 PASS (function(){({ "null": 42 }.null === 42)}); true is true | |
| 92 PASS ({ null: 42 }.null === 42) is true | |
| 93 PASS (function(){({ null: 42 }.null === 42)}); true is true | |
| 94 PASS ({ get null(){}, set null(){}, parsedOkay: 42 }.parsedOkay === 42) is true | |
| 95 PASS (function(){({ get null(){}, set null(){}, parsedOkay: 42 }.parsedOkay ===
42)}); true is true | |
| 96 PASS "use strict";var null; true threw exception SyntaxError: Expected an identi
fier but found 'null' instead. | |
| 97 PASS (function(){"use strict";var null; true}); true threw exception SyntaxError
: Expected an identifier but found 'null' instead. | |
| 98 PASS "use strict";var null = 42; null === 42 threw exception SyntaxError: Expect
ed an identifier but found 'null' instead. | |
| 99 PASS (function(){"use strict";var null = 42; null === 42}); true threw exception
SyntaxError: Expected an identifier but found 'null' instead. | |
| 100 PASS "use strict";function g(null){ "use strict"; }; true threw exception Syntax
Error: Expected an identifier but found 'null' instead. | |
| 101 PASS (function(){"use strict";function g(null){ "use strict"; }; true}); true th
rew exception SyntaxError: Expected an identifier but found 'null' instead. | |
| 102 PASS "use strict";/null/.test(function g(null){ "use strict"; }) threw exception
SyntaxError: Expected an identifier but found 'null' instead. | |
| 103 PASS (function(){"use strict";/null/.test(function g(null){ "use strict"; })});
true threw exception SyntaxError: Expected an identifier but found 'null' instea
d. | |
| 104 PASS "use strict";try{}catch(null){}; true threw exception SyntaxError: Expected
an identifier but found 'null' instead. | |
| 105 PASS (function(){"use strict";try{}catch(null){}; true}); true threw exception S
yntaxError: Expected an identifier but found 'null' instead. | |
| 106 PASS "use strict";function null(){ "use strict"; }; true threw exception SyntaxE
rror: Unexpected token 'null'. | |
| 107 PASS (function(){"use strict";function null(){ "use strict"; }; true}); true thr
ew exception SyntaxError: Unexpected token 'null'. | |
| 108 PASS "use strict";({ "null": 42 }.null === 42) is true | |
| 109 PASS (function(){"use strict";({ "null": 42 }.null === 42)}); true is true | |
| 110 PASS "use strict";({ null: 42 }.null === 42) is true | |
| 111 PASS (function(){"use strict";({ null: 42 }.null === 42)}); true is true | |
| 112 PASS "use strict";({ get null(){}, set null(){}, parsedOkay: 42 }.parsedOkay ===
42) is true | |
| 113 PASS (function(){"use strict";({ get null(){}, set null(){}, parsedOkay: 42 }.pa
rsedOkay === 42)}); true is true | |
| 114 PASS var break; true threw exception SyntaxError: Expected an identifier but fou
nd 'break' instead. | |
| 115 PASS (function(){var break; true}); true threw exception SyntaxError: Expected a
n identifier but found 'break' instead. | |
| 116 PASS var break = 42; break === 42 threw exception SyntaxError: Expected an ident
ifier but found 'break' instead. | |
| 117 PASS (function(){var break = 42; break === 42}); true threw exception SyntaxErro
r: Expected an identifier but found 'break' instead. | |
| 118 PASS function g(break){ }; true threw exception SyntaxError: Expected an identi
fier but found 'break' instead. | |
| 119 PASS (function(){function g(break){ }; true}); true threw exception SyntaxError
: Expected an identifier but found 'break' instead. | |
| 120 PASS /break/.test(function g(break){ }) threw exception SyntaxError: Expected a
n identifier but found 'break' instead. | |
| 121 PASS (function(){/break/.test(function g(break){ })}); true threw exception Syn
taxError: Expected an identifier but found 'break' instead. | |
| 122 PASS try{}catch(break){}; true threw exception SyntaxError: Expected an identifi
er but found 'break' instead. | |
| 123 PASS (function(){try{}catch(break){}; true}); true threw exception SyntaxError:
Expected an identifier but found 'break' instead. | |
| 124 PASS function break(){ }; true threw exception SyntaxError: Unexpected token 'b
reak'. | |
| 125 PASS (function(){function break(){ }; true}); true threw exception SyntaxError:
Unexpected token 'break'. | |
| 126 PASS ({ "break": 42 }.break === 42) is true | |
| 127 PASS (function(){({ "break": 42 }.break === 42)}); true is true | |
| 128 PASS ({ break: 42 }.break === 42) is true | |
| 129 PASS (function(){({ break: 42 }.break === 42)}); true is true | |
| 130 PASS ({ get break(){}, set break(){}, parsedOkay: 42 }.parsedOkay === 42) is tru
e | |
| 131 PASS (function(){({ get break(){}, set break(){}, parsedOkay: 42 }.parsedOkay ==
= 42)}); true is true | |
| 132 PASS "use strict";var break; true threw exception SyntaxError: Expected an ident
ifier but found 'break' instead. | |
| 133 PASS (function(){"use strict";var break; true}); true threw exception SyntaxErro
r: Expected an identifier but found 'break' instead. | |
| 134 PASS "use strict";var break = 42; break === 42 threw exception SyntaxError: Expe
cted an identifier but found 'break' instead. | |
| 135 PASS (function(){"use strict";var break = 42; break === 42}); true threw excepti
on SyntaxError: Expected an identifier but found 'break' instead. | |
| 136 PASS "use strict";function g(break){ "use strict"; }; true threw exception Synta
xError: Expected an identifier but found 'break' instead. | |
| 137 PASS (function(){"use strict";function g(break){ "use strict"; }; true}); true t
hrew exception SyntaxError: Expected an identifier but found 'break' instead. | |
| 138 PASS "use strict";/break/.test(function g(break){ "use strict"; }) threw excepti
on SyntaxError: Expected an identifier but found 'break' instead. | |
| 139 PASS (function(){"use strict";/break/.test(function g(break){ "use strict"; })})
; true threw exception SyntaxError: Expected an identifier but found 'break' ins
tead. | |
| 140 PASS "use strict";try{}catch(break){}; true threw exception SyntaxError: Expecte
d an identifier but found 'break' instead. | |
| 141 PASS (function(){"use strict";try{}catch(break){}; true}); true threw exception
SyntaxError: Expected an identifier but found 'break' instead. | |
| 142 PASS "use strict";function break(){ "use strict"; }; true threw exception Syntax
Error: Unexpected token 'break'. | |
| 143 PASS (function(){"use strict";function break(){ "use strict"; }; true}); true th
rew exception SyntaxError: Unexpected token 'break'. | |
| 144 PASS "use strict";({ "break": 42 }.break === 42) is true | |
| 145 PASS (function(){"use strict";({ "break": 42 }.break === 42)}); true is true | |
| 146 PASS "use strict";({ break: 42 }.break === 42) is true | |
| 147 PASS (function(){"use strict";({ break: 42 }.break === 42)}); true is true | |
| 148 PASS "use strict";({ get break(){}, set break(){}, parsedOkay: 42 }.parsedOkay =
== 42) is true | |
| 149 PASS (function(){"use strict";({ get break(){}, set break(){}, parsedOkay: 42 }.
parsedOkay === 42)}); true is true | |
| 150 PASS var case; true threw exception SyntaxError: Expected an identifier but foun
d 'case' instead. | |
| 151 PASS (function(){var case; true}); true threw exception SyntaxError: Expected an
identifier but found 'case' instead. | |
| 152 PASS var case = 42; case === 42 threw exception SyntaxError: Expected an identif
ier but found 'case' instead. | |
| 153 PASS (function(){var case = 42; case === 42}); true threw exception SyntaxError:
Expected an identifier but found 'case' instead. | |
| 154 PASS function g(case){ }; true threw exception SyntaxError: Expected an identif
ier but found 'case' instead. | |
| 155 PASS (function(){function g(case){ }; true}); true threw exception SyntaxError:
Expected an identifier but found 'case' instead. | |
| 156 PASS /case/.test(function g(case){ }) threw exception SyntaxError: Expected an
identifier but found 'case' instead. | |
| 157 PASS (function(){/case/.test(function g(case){ })}); true threw exception Synta
xError: Expected an identifier but found 'case' instead. | |
| 158 PASS try{}catch(case){}; true threw exception SyntaxError: Expected an identifie
r but found 'case' instead. | |
| 159 PASS (function(){try{}catch(case){}; true}); true threw exception SyntaxError: E
xpected an identifier but found 'case' instead. | |
| 160 PASS function case(){ }; true threw exception SyntaxError: Unexpected token 'ca
se'. | |
| 161 PASS (function(){function case(){ }; true}); true threw exception SyntaxError:
Unexpected token 'case'. | |
| 162 PASS ({ "case": 42 }.case === 42) is true | |
| 163 PASS (function(){({ "case": 42 }.case === 42)}); true is true | |
| 164 PASS ({ case: 42 }.case === 42) is true | |
| 165 PASS (function(){({ case: 42 }.case === 42)}); true is true | |
| 166 PASS ({ get case(){}, set case(){}, parsedOkay: 42 }.parsedOkay === 42) is true | |
| 167 PASS (function(){({ get case(){}, set case(){}, parsedOkay: 42 }.parsedOkay ===
42)}); true is true | |
| 168 PASS "use strict";var case; true threw exception SyntaxError: Expected an identi
fier but found 'case' instead. | |
| 169 PASS (function(){"use strict";var case; true}); true threw exception SyntaxError
: Expected an identifier but found 'case' instead. | |
| 170 PASS "use strict";var case = 42; case === 42 threw exception SyntaxError: Expect
ed an identifier but found 'case' instead. | |
| 171 PASS (function(){"use strict";var case = 42; case === 42}); true threw exception
SyntaxError: Expected an identifier but found 'case' instead. | |
| 172 PASS "use strict";function g(case){ "use strict"; }; true threw exception Syntax
Error: Expected an identifier but found 'case' instead. | |
| 173 PASS (function(){"use strict";function g(case){ "use strict"; }; true}); true th
rew exception SyntaxError: Expected an identifier but found 'case' instead. | |
| 174 PASS "use strict";/case/.test(function g(case){ "use strict"; }) threw exception
SyntaxError: Expected an identifier but found 'case' instead. | |
| 175 PASS (function(){"use strict";/case/.test(function g(case){ "use strict"; })});
true threw exception SyntaxError: Expected an identifier but found 'case' instea
d. | |
| 176 PASS "use strict";try{}catch(case){}; true threw exception SyntaxError: Expected
an identifier but found 'case' instead. | |
| 177 PASS (function(){"use strict";try{}catch(case){}; true}); true threw exception S
yntaxError: Expected an identifier but found 'case' instead. | |
| 178 PASS "use strict";function case(){ "use strict"; }; true threw exception SyntaxE
rror: Unexpected token 'case'. | |
| 179 PASS (function(){"use strict";function case(){ "use strict"; }; true}); true thr
ew exception SyntaxError: Unexpected token 'case'. | |
| 180 PASS "use strict";({ "case": 42 }.case === 42) is true | |
| 181 PASS (function(){"use strict";({ "case": 42 }.case === 42)}); true is true | |
| 182 PASS "use strict";({ case: 42 }.case === 42) is true | |
| 183 PASS (function(){"use strict";({ case: 42 }.case === 42)}); true is true | |
| 184 PASS "use strict";({ get case(){}, set case(){}, parsedOkay: 42 }.parsedOkay ===
42) is true | |
| 185 PASS (function(){"use strict";({ get case(){}, set case(){}, parsedOkay: 42 }.pa
rsedOkay === 42)}); true is true | |
| 186 PASS var catch; true threw exception SyntaxError: Expected an identifier but fou
nd 'catch' instead. | |
| 187 PASS (function(){var catch; true}); true threw exception SyntaxError: Expected a
n identifier but found 'catch' instead. | |
| 188 PASS var catch = 42; catch === 42 threw exception SyntaxError: Expected an ident
ifier but found 'catch' instead. | |
| 189 PASS (function(){var catch = 42; catch === 42}); true threw exception SyntaxErro
r: Expected an identifier but found 'catch' instead. | |
| 190 PASS function g(catch){ }; true threw exception SyntaxError: Expected an identi
fier but found 'catch' instead. | |
| 191 PASS (function(){function g(catch){ }; true}); true threw exception SyntaxError
: Expected an identifier but found 'catch' instead. | |
| 192 PASS /catch/.test(function g(catch){ }) threw exception SyntaxError: Expected a
n identifier but found 'catch' instead. | |
| 193 PASS (function(){/catch/.test(function g(catch){ })}); true threw exception Syn
taxError: Expected an identifier but found 'catch' instead. | |
| 194 PASS try{}catch(catch){}; true threw exception SyntaxError: Expected an identifi
er but found 'catch' instead. | |
| 195 PASS (function(){try{}catch(catch){}; true}); true threw exception SyntaxError:
Expected an identifier but found 'catch' instead. | |
| 196 PASS function catch(){ }; true threw exception SyntaxError: Unexpected token 'c
atch'. | |
| 197 PASS (function(){function catch(){ }; true}); true threw exception SyntaxError:
Unexpected token 'catch'. | |
| 198 PASS ({ "catch": 42 }.catch === 42) is true | |
| 199 PASS (function(){({ "catch": 42 }.catch === 42)}); true is true | |
| 200 PASS ({ catch: 42 }.catch === 42) is true | |
| 201 PASS (function(){({ catch: 42 }.catch === 42)}); true is true | |
| 202 PASS ({ get catch(){}, set catch(){}, parsedOkay: 42 }.parsedOkay === 42) is tru
e | |
| 203 PASS (function(){({ get catch(){}, set catch(){}, parsedOkay: 42 }.parsedOkay ==
= 42)}); true is true | |
| 204 PASS "use strict";var catch; true threw exception SyntaxError: Expected an ident
ifier but found 'catch' instead. | |
| 205 PASS (function(){"use strict";var catch; true}); true threw exception SyntaxErro
r: Expected an identifier but found 'catch' instead. | |
| 206 PASS "use strict";var catch = 42; catch === 42 threw exception SyntaxError: Expe
cted an identifier but found 'catch' instead. | |
| 207 PASS (function(){"use strict";var catch = 42; catch === 42}); true threw excepti
on SyntaxError: Expected an identifier but found 'catch' instead. | |
| 208 PASS "use strict";function g(catch){ "use strict"; }; true threw exception Synta
xError: Expected an identifier but found 'catch' instead. | |
| 209 PASS (function(){"use strict";function g(catch){ "use strict"; }; true}); true t
hrew exception SyntaxError: Expected an identifier but found 'catch' instead. | |
| 210 PASS "use strict";/catch/.test(function g(catch){ "use strict"; }) threw excepti
on SyntaxError: Expected an identifier but found 'catch' instead. | |
| 211 PASS (function(){"use strict";/catch/.test(function g(catch){ "use strict"; })})
; true threw exception SyntaxError: Expected an identifier but found 'catch' ins
tead. | |
| 212 PASS "use strict";try{}catch(catch){}; true threw exception SyntaxError: Expecte
d an identifier but found 'catch' instead. | |
| 213 PASS (function(){"use strict";try{}catch(catch){}; true}); true threw exception
SyntaxError: Expected an identifier but found 'catch' instead. | |
| 214 PASS "use strict";function catch(){ "use strict"; }; true threw exception Syntax
Error: Unexpected token 'catch'. | |
| 215 PASS (function(){"use strict";function catch(){ "use strict"; }; true}); true th
rew exception SyntaxError: Unexpected token 'catch'. | |
| 216 PASS "use strict";({ "catch": 42 }.catch === 42) is true | |
| 217 PASS (function(){"use strict";({ "catch": 42 }.catch === 42)}); true is true | |
| 218 PASS "use strict";({ catch: 42 }.catch === 42) is true | |
| 219 PASS (function(){"use strict";({ catch: 42 }.catch === 42)}); true is true | |
| 220 PASS "use strict";({ get catch(){}, set catch(){}, parsedOkay: 42 }.parsedOkay =
== 42) is true | |
| 221 PASS (function(){"use strict";({ get catch(){}, set catch(){}, parsedOkay: 42 }.
parsedOkay === 42)}); true is true | |
| 222 PASS var continue; true threw exception SyntaxError: Expected an identifier but
found 'continue' instead. | |
| 223 PASS (function(){var continue; true}); true threw exception SyntaxError: Expecte
d an identifier but found 'continue' instead. | |
| 224 PASS var continue = 42; continue === 42 threw exception SyntaxError: Expected an
identifier but found 'continue' instead. | |
| 225 PASS (function(){var continue = 42; continue === 42}); true threw exception Synt
axError: Expected an identifier but found 'continue' instead. | |
| 226 PASS function g(continue){ }; true threw exception SyntaxError: Expected an ide
ntifier but found 'continue' instead. | |
| 227 PASS (function(){function g(continue){ }; true}); true threw exception SyntaxEr
ror: Expected an identifier but found 'continue' instead. | |
| 228 PASS /continue/.test(function g(continue){ }) threw exception SyntaxError: Expe
cted an identifier but found 'continue' instead. | |
| 229 PASS (function(){/continue/.test(function g(continue){ })}); true threw excepti
on SyntaxError: Expected an identifier but found 'continue' instead. | |
| 230 PASS try{}catch(continue){}; true threw exception SyntaxError: Expected an ident
ifier but found 'continue' instead. | |
| 231 PASS (function(){try{}catch(continue){}; true}); true threw exception SyntaxErro
r: Expected an identifier but found 'continue' instead. | |
| 232 PASS function continue(){ }; true threw exception SyntaxError: Unexpected token
'continue'. | |
| 233 PASS (function(){function continue(){ }; true}); true threw exception SyntaxErr
or: Unexpected token 'continue'. | |
| 234 PASS ({ "continue": 42 }.continue === 42) is true | |
| 235 PASS (function(){({ "continue": 42 }.continue === 42)}); true is true | |
| 236 PASS ({ continue: 42 }.continue === 42) is true | |
| 237 PASS (function(){({ continue: 42 }.continue === 42)}); true is true | |
| 238 PASS ({ get continue(){}, set continue(){}, parsedOkay: 42 }.parsedOkay === 42)
is true | |
| 239 PASS (function(){({ get continue(){}, set continue(){}, parsedOkay: 42 }.parsedO
kay === 42)}); true is true | |
| 240 PASS "use strict";var continue; true threw exception SyntaxError: Expected an id
entifier but found 'continue' instead. | |
| 241 PASS (function(){"use strict";var continue; true}); true threw exception SyntaxE
rror: Expected an identifier but found 'continue' instead. | |
| 242 PASS "use strict";var continue = 42; continue === 42 threw exception SyntaxError
: Expected an identifier but found 'continue' instead. | |
| 243 PASS (function(){"use strict";var continue = 42; continue === 42}); true threw e
xception SyntaxError: Expected an identifier but found 'continue' instead. | |
| 244 PASS "use strict";function g(continue){ "use strict"; }; true threw exception Sy
ntaxError: Expected an identifier but found 'continue' instead. | |
| 245 PASS (function(){"use strict";function g(continue){ "use strict"; }; true}); tru
e threw exception SyntaxError: Expected an identifier but found 'continue' inste
ad. | |
| 246 PASS "use strict";/continue/.test(function g(continue){ "use strict"; }) threw e
xception SyntaxError: Expected an identifier but found 'continue' instead. | |
| 247 PASS (function(){"use strict";/continue/.test(function g(continue){ "use strict"
; })}); true threw exception SyntaxError: Expected an identifier but found 'cont
inue' instead. | |
| 248 PASS "use strict";try{}catch(continue){}; true threw exception SyntaxError: Expe
cted an identifier but found 'continue' instead. | |
| 249 PASS (function(){"use strict";try{}catch(continue){}; true}); true threw excepti
on SyntaxError: Expected an identifier but found 'continue' instead. | |
| 250 PASS "use strict";function continue(){ "use strict"; }; true threw exception Syn
taxError: Unexpected token 'continue'. | |
| 251 PASS (function(){"use strict";function continue(){ "use strict"; }; true}); true
threw exception SyntaxError: Unexpected token 'continue'. | |
| 252 PASS "use strict";({ "continue": 42 }.continue === 42) is true | |
| 253 PASS (function(){"use strict";({ "continue": 42 }.continue === 42)}); true is tr
ue | |
| 254 PASS "use strict";({ continue: 42 }.continue === 42) is true | |
| 255 PASS (function(){"use strict";({ continue: 42 }.continue === 42)}); true is true | |
| 256 PASS "use strict";({ get continue(){}, set continue(){}, parsedOkay: 42 }.parsed
Okay === 42) is true | |
| 257 PASS (function(){"use strict";({ get continue(){}, set continue(){}, parsedOkay:
42 }.parsedOkay === 42)}); true is true | |
| 258 PASS var debugger; true threw exception SyntaxError: Expected an identifier but
found 'debugger' instead. | |
| 259 PASS (function(){var debugger; true}); true threw exception SyntaxError: Expecte
d an identifier but found 'debugger' instead. | |
| 260 PASS var debugger = 42; debugger === 42 threw exception SyntaxError: Expected an
identifier but found 'debugger' instead. | |
| 261 PASS (function(){var debugger = 42; debugger === 42}); true threw exception Synt
axError: Expected an identifier but found 'debugger' instead. | |
| 262 PASS function g(debugger){ }; true threw exception SyntaxError: Expected an ide
ntifier but found 'debugger' instead. | |
| 263 PASS (function(){function g(debugger){ }; true}); true threw exception SyntaxEr
ror: Expected an identifier but found 'debugger' instead. | |
| 264 PASS /debugger/.test(function g(debugger){ }) threw exception SyntaxError: Expe
cted an identifier but found 'debugger' instead. | |
| 265 PASS (function(){/debugger/.test(function g(debugger){ })}); true threw excepti
on SyntaxError: Expected an identifier but found 'debugger' instead. | |
| 266 PASS try{}catch(debugger){}; true threw exception SyntaxError: Expected an ident
ifier but found 'debugger' instead. | |
| 267 PASS (function(){try{}catch(debugger){}; true}); true threw exception SyntaxErro
r: Expected an identifier but found 'debugger' instead. | |
| 268 PASS function debugger(){ }; true threw exception SyntaxError: Unexpected token
'debugger'. | |
| 269 PASS (function(){function debugger(){ }; true}); true threw exception SyntaxErr
or: Unexpected token 'debugger'. | |
| 270 PASS ({ "debugger": 42 }.debugger === 42) is true | |
| 271 PASS (function(){({ "debugger": 42 }.debugger === 42)}); true is true | |
| 272 PASS ({ debugger: 42 }.debugger === 42) is true | |
| 273 PASS (function(){({ debugger: 42 }.debugger === 42)}); true is true | |
| 274 PASS ({ get debugger(){}, set debugger(){}, parsedOkay: 42 }.parsedOkay === 42)
is true | |
| 275 PASS (function(){({ get debugger(){}, set debugger(){}, parsedOkay: 42 }.parsedO
kay === 42)}); true is true | |
| 276 PASS "use strict";var debugger; true threw exception SyntaxError: Expected an id
entifier but found 'debugger' instead. | |
| 277 PASS (function(){"use strict";var debugger; true}); true threw exception SyntaxE
rror: Expected an identifier but found 'debugger' instead. | |
| 278 PASS "use strict";var debugger = 42; debugger === 42 threw exception SyntaxError
: Expected an identifier but found 'debugger' instead. | |
| 279 PASS (function(){"use strict";var debugger = 42; debugger === 42}); true threw e
xception SyntaxError: Expected an identifier but found 'debugger' instead. | |
| 280 PASS "use strict";function g(debugger){ "use strict"; }; true threw exception Sy
ntaxError: Expected an identifier but found 'debugger' instead. | |
| 281 PASS (function(){"use strict";function g(debugger){ "use strict"; }; true}); tru
e threw exception SyntaxError: Expected an identifier but found 'debugger' inste
ad. | |
| 282 PASS "use strict";/debugger/.test(function g(debugger){ "use strict"; }) threw e
xception SyntaxError: Expected an identifier but found 'debugger' instead. | |
| 283 PASS (function(){"use strict";/debugger/.test(function g(debugger){ "use strict"
; })}); true threw exception SyntaxError: Expected an identifier but found 'debu
gger' instead. | |
| 284 PASS "use strict";try{}catch(debugger){}; true threw exception SyntaxError: Expe
cted an identifier but found 'debugger' instead. | |
| 285 PASS (function(){"use strict";try{}catch(debugger){}; true}); true threw excepti
on SyntaxError: Expected an identifier but found 'debugger' instead. | |
| 286 PASS "use strict";function debugger(){ "use strict"; }; true threw exception Syn
taxError: Unexpected token 'debugger'. | |
| 287 PASS (function(){"use strict";function debugger(){ "use strict"; }; true}); true
threw exception SyntaxError: Unexpected token 'debugger'. | |
| 288 PASS "use strict";({ "debugger": 42 }.debugger === 42) is true | |
| 289 PASS (function(){"use strict";({ "debugger": 42 }.debugger === 42)}); true is tr
ue | |
| 290 PASS "use strict";({ debugger: 42 }.debugger === 42) is true | |
| 291 PASS (function(){"use strict";({ debugger: 42 }.debugger === 42)}); true is true | |
| 292 PASS "use strict";({ get debugger(){}, set debugger(){}, parsedOkay: 42 }.parsed
Okay === 42) is true | |
| 293 PASS (function(){"use strict";({ get debugger(){}, set debugger(){}, parsedOkay:
42 }.parsedOkay === 42)}); true is true | |
| 294 PASS var default; true threw exception SyntaxError: Expected an identifier but f
ound 'default' instead. | |
| 295 PASS (function(){var default; true}); true threw exception SyntaxError: Expected
an identifier but found 'default' instead. | |
| 296 PASS var default = 42; default === 42 threw exception SyntaxError: Expected an i
dentifier but found 'default' instead. | |
| 297 PASS (function(){var default = 42; default === 42}); true threw exception Syntax
Error: Expected an identifier but found 'default' instead. | |
| 298 PASS function g(default){ }; true threw exception SyntaxError: Expected an iden
tifier but found 'default' instead. | |
| 299 PASS (function(){function g(default){ }; true}); true threw exception SyntaxErr
or: Expected an identifier but found 'default' instead. | |
| 300 PASS /default/.test(function g(default){ }) threw exception SyntaxError: Expect
ed an identifier but found 'default' instead. | |
| 301 PASS (function(){/default/.test(function g(default){ })}); true threw exception
SyntaxError: Expected an identifier but found 'default' instead. | |
| 302 PASS try{}catch(default){}; true threw exception SyntaxError: Expected an identi
fier but found 'default' instead. | |
| 303 PASS (function(){try{}catch(default){}; true}); true threw exception SyntaxError
: Expected an identifier but found 'default' instead. | |
| 304 PASS function default(){ }; true threw exception SyntaxError: Unexpected token
'default'. | |
| 305 PASS (function(){function default(){ }; true}); true threw exception SyntaxErro
r: Unexpected token 'default'. | |
| 306 PASS ({ "default": 42 }.default === 42) is true | |
| 307 PASS (function(){({ "default": 42 }.default === 42)}); true is true | |
| 308 PASS ({ default: 42 }.default === 42) is true | |
| 309 PASS (function(){({ default: 42 }.default === 42)}); true is true | |
| 310 PASS ({ get default(){}, set default(){}, parsedOkay: 42 }.parsedOkay === 42) is
true | |
| 311 PASS (function(){({ get default(){}, set default(){}, parsedOkay: 42 }.parsedOka
y === 42)}); true is true | |
| 312 PASS "use strict";var default; true threw exception SyntaxError: Expected an ide
ntifier but found 'default' instead. | |
| 313 PASS (function(){"use strict";var default; true}); true threw exception SyntaxEr
ror: Expected an identifier but found 'default' instead. | |
| 314 PASS "use strict";var default = 42; default === 42 threw exception SyntaxError:
Expected an identifier but found 'default' instead. | |
| 315 PASS (function(){"use strict";var default = 42; default === 42}); true threw exc
eption SyntaxError: Expected an identifier but found 'default' instead. | |
| 316 PASS "use strict";function g(default){ "use strict"; }; true threw exception Syn
taxError: Expected an identifier but found 'default' instead. | |
| 317 PASS (function(){"use strict";function g(default){ "use strict"; }; true}); true
threw exception SyntaxError: Expected an identifier but found 'default' instead
. | |
| 318 PASS "use strict";/default/.test(function g(default){ "use strict"; }) threw exc
eption SyntaxError: Expected an identifier but found 'default' instead. | |
| 319 PASS (function(){"use strict";/default/.test(function g(default){ "use strict";
})}); true threw exception SyntaxError: Expected an identifier but found 'defaul
t' instead. | |
| 320 PASS "use strict";try{}catch(default){}; true threw exception SyntaxError: Expec
ted an identifier but found 'default' instead. | |
| 321 PASS (function(){"use strict";try{}catch(default){}; true}); true threw exceptio
n SyntaxError: Expected an identifier but found 'default' instead. | |
| 322 PASS "use strict";function default(){ "use strict"; }; true threw exception Synt
axError: Unexpected token 'default'. | |
| 323 PASS (function(){"use strict";function default(){ "use strict"; }; true}); true
threw exception SyntaxError: Unexpected token 'default'. | |
| 324 PASS "use strict";({ "default": 42 }.default === 42) is true | |
| 325 PASS (function(){"use strict";({ "default": 42 }.default === 42)}); true is true | |
| 326 PASS "use strict";({ default: 42 }.default === 42) is true | |
| 327 PASS (function(){"use strict";({ default: 42 }.default === 42)}); true is true | |
| 328 PASS "use strict";({ get default(){}, set default(){}, parsedOkay: 42 }.parsedOk
ay === 42) is true | |
| 329 PASS (function(){"use strict";({ get default(){}, set default(){}, parsedOkay: 4
2 }.parsedOkay === 42)}); true is true | |
| 330 PASS var delete; true threw exception SyntaxError: Expected an identifier but fo
und 'delete' instead. | |
| 331 PASS (function(){var delete; true}); true threw exception SyntaxError: Expected
an identifier but found 'delete' instead. | |
| 332 PASS var delete = 42; delete === 42 threw exception SyntaxError: Expected an ide
ntifier but found 'delete' instead. | |
| 333 PASS (function(){var delete = 42; delete === 42}); true threw exception SyntaxEr
ror: Expected an identifier but found 'delete' instead. | |
| 334 PASS function g(delete){ }; true threw exception SyntaxError: Expected an ident
ifier but found 'delete' instead. | |
| 335 PASS (function(){function g(delete){ }; true}); true threw exception SyntaxErro
r: Expected an identifier but found 'delete' instead. | |
| 336 PASS /delete/.test(function g(delete){ }) threw exception SyntaxError: Expected
an identifier but found 'delete' instead. | |
| 337 PASS (function(){/delete/.test(function g(delete){ })}); true threw exception S
yntaxError: Expected an identifier but found 'delete' instead. | |
| 338 PASS try{}catch(delete){}; true threw exception SyntaxError: Expected an identif
ier but found 'delete' instead. | |
| 339 PASS (function(){try{}catch(delete){}; true}); true threw exception SyntaxError:
Expected an identifier but found 'delete' instead. | |
| 340 PASS function delete(){ }; true threw exception SyntaxError: Unexpected token '
delete'. | |
| 341 PASS (function(){function delete(){ }; true}); true threw exception SyntaxError
: Unexpected token 'delete'. | |
| 342 PASS ({ "delete": 42 }.delete === 42) is true | |
| 343 PASS (function(){({ "delete": 42 }.delete === 42)}); true is true | |
| 344 PASS ({ delete: 42 }.delete === 42) is true | |
| 345 PASS (function(){({ delete: 42 }.delete === 42)}); true is true | |
| 346 PASS ({ get delete(){}, set delete(){}, parsedOkay: 42 }.parsedOkay === 42) is t
rue | |
| 347 PASS (function(){({ get delete(){}, set delete(){}, parsedOkay: 42 }.parsedOkay
=== 42)}); true is true | |
| 348 PASS "use strict";var delete; true threw exception SyntaxError: Expected an iden
tifier but found 'delete' instead. | |
| 349 PASS (function(){"use strict";var delete; true}); true threw exception SyntaxErr
or: Expected an identifier but found 'delete' instead. | |
| 350 PASS "use strict";var delete = 42; delete === 42 threw exception SyntaxError: Ex
pected an identifier but found 'delete' instead. | |
| 351 PASS (function(){"use strict";var delete = 42; delete === 42}); true threw excep
tion SyntaxError: Expected an identifier but found 'delete' instead. | |
| 352 PASS "use strict";function g(delete){ "use strict"; }; true threw exception Synt
axError: Expected an identifier but found 'delete' instead. | |
| 353 PASS (function(){"use strict";function g(delete){ "use strict"; }; true}); true
threw exception SyntaxError: Expected an identifier but found 'delete' instead. | |
| 354 PASS "use strict";/delete/.test(function g(delete){ "use strict"; }) threw excep
tion SyntaxError: Expected an identifier but found 'delete' instead. | |
| 355 PASS (function(){"use strict";/delete/.test(function g(delete){ "use strict"; })
}); true threw exception SyntaxError: Expected an identifier but found 'delete'
instead. | |
| 356 PASS "use strict";try{}catch(delete){}; true threw exception SyntaxError: Expect
ed an identifier but found 'delete' instead. | |
| 357 PASS (function(){"use strict";try{}catch(delete){}; true}); true threw exception
SyntaxError: Expected an identifier but found 'delete' instead. | |
| 358 PASS "use strict";function delete(){ "use strict"; }; true threw exception Synta
xError: Unexpected token 'delete'. | |
| 359 PASS (function(){"use strict";function delete(){ "use strict"; }; true}); true t
hrew exception SyntaxError: Unexpected token 'delete'. | |
| 360 PASS "use strict";({ "delete": 42 }.delete === 42) is true | |
| 361 PASS (function(){"use strict";({ "delete": 42 }.delete === 42)}); true is true | |
| 362 PASS "use strict";({ delete: 42 }.delete === 42) is true | |
| 363 PASS (function(){"use strict";({ delete: 42 }.delete === 42)}); true is true | |
| 364 PASS "use strict";({ get delete(){}, set delete(){}, parsedOkay: 42 }.parsedOkay
=== 42) is true | |
| 365 PASS (function(){"use strict";({ get delete(){}, set delete(){}, parsedOkay: 42
}.parsedOkay === 42)}); true is true | |
| 366 PASS var do; true threw exception SyntaxError: Expected an identifier but found
'do' instead. | |
| 367 PASS (function(){var do; true}); true threw exception SyntaxError: Expected an i
dentifier but found 'do' instead. | |
| 368 PASS var do = 42; do === 42 threw exception SyntaxError: Expected an identifier
but found 'do' instead. | |
| 369 PASS (function(){var do = 42; do === 42}); true threw exception SyntaxError: Exp
ected an identifier but found 'do' instead. | |
| 370 PASS function g(do){ }; true threw exception SyntaxError: Expected an identifie
r but found 'do' instead. | |
| 371 PASS (function(){function g(do){ }; true}); true threw exception SyntaxError: E
xpected an identifier but found 'do' instead. | |
| 372 PASS /do/.test(function g(do){ }) threw exception SyntaxError: Expected an iden
tifier but found 'do' instead. | |
| 373 PASS (function(){/do/.test(function g(do){ })}); true threw exception SyntaxErr
or: Expected an identifier but found 'do' instead. | |
| 374 PASS try{}catch(do){}; true threw exception SyntaxError: Expected an identifier
but found 'do' instead. | |
| 375 PASS (function(){try{}catch(do){}; true}); true threw exception SyntaxError: Exp
ected an identifier but found 'do' instead. | |
| 376 PASS function do(){ }; true threw exception SyntaxError: Unexpected token 'do'. | |
| 377 PASS (function(){function do(){ }; true}); true threw exception SyntaxError: Un
expected token 'do'. | |
| 378 PASS ({ "do": 42 }.do === 42) is true | |
| 379 PASS (function(){({ "do": 42 }.do === 42)}); true is true | |
| 380 PASS ({ do: 42 }.do === 42) is true | |
| 381 PASS (function(){({ do: 42 }.do === 42)}); true is true | |
| 382 PASS ({ get do(){}, set do(){}, parsedOkay: 42 }.parsedOkay === 42) is true | |
| 383 PASS (function(){({ get do(){}, set do(){}, parsedOkay: 42 }.parsedOkay === 42)}
); true is true | |
| 384 PASS "use strict";var do; true threw exception SyntaxError: Expected an identifi
er but found 'do' instead. | |
| 385 PASS (function(){"use strict";var do; true}); true threw exception SyntaxError:
Expected an identifier but found 'do' instead. | |
| 386 PASS "use strict";var do = 42; do === 42 threw exception SyntaxError: Expected a
n identifier but found 'do' instead. | |
| 387 PASS (function(){"use strict";var do = 42; do === 42}); true threw exception Syn
taxError: Expected an identifier but found 'do' instead. | |
| 388 PASS "use strict";function g(do){ "use strict"; }; true threw exception SyntaxEr
ror: Expected an identifier but found 'do' instead. | |
| 389 PASS (function(){"use strict";function g(do){ "use strict"; }; true}); true thre
w exception SyntaxError: Expected an identifier but found 'do' instead. | |
| 390 PASS "use strict";/do/.test(function g(do){ "use strict"; }) threw exception Syn
taxError: Expected an identifier but found 'do' instead. | |
| 391 PASS (function(){"use strict";/do/.test(function g(do){ "use strict"; })}); true
threw exception SyntaxError: Expected an identifier but found 'do' instead. | |
| 392 PASS "use strict";try{}catch(do){}; true threw exception SyntaxError: Expected a
n identifier but found 'do' instead. | |
| 393 PASS (function(){"use strict";try{}catch(do){}; true}); true threw exception Syn
taxError: Expected an identifier but found 'do' instead. | |
| 394 PASS "use strict";function do(){ "use strict"; }; true threw exception SyntaxErr
or: Unexpected token 'do'. | |
| 395 PASS (function(){"use strict";function do(){ "use strict"; }; true}); true threw
exception SyntaxError: Unexpected token 'do'. | |
| 396 PASS "use strict";({ "do": 42 }.do === 42) is true | |
| 397 PASS (function(){"use strict";({ "do": 42 }.do === 42)}); true is true | |
| 398 PASS "use strict";({ do: 42 }.do === 42) is true | |
| 399 PASS (function(){"use strict";({ do: 42 }.do === 42)}); true is true | |
| 400 PASS "use strict";({ get do(){}, set do(){}, parsedOkay: 42 }.parsedOkay === 42)
is true | |
| 401 PASS (function(){"use strict";({ get do(){}, set do(){}, parsedOkay: 42 }.parsed
Okay === 42)}); true is true | |
| 402 PASS var else; true threw exception SyntaxError: Expected an identifier but foun
d 'else' instead. | |
| 403 PASS (function(){var else; true}); true threw exception SyntaxError: Expected an
identifier but found 'else' instead. | |
| 404 PASS var else = 42; else === 42 threw exception SyntaxError: Expected an identif
ier but found 'else' instead. | |
| 405 PASS (function(){var else = 42; else === 42}); true threw exception SyntaxError:
Expected an identifier but found 'else' instead. | |
| 406 PASS function g(else){ }; true threw exception SyntaxError: Expected an identif
ier but found 'else' instead. | |
| 407 PASS (function(){function g(else){ }; true}); true threw exception SyntaxError:
Expected an identifier but found 'else' instead. | |
| 408 PASS /else/.test(function g(else){ }) threw exception SyntaxError: Expected an
identifier but found 'else' instead. | |
| 409 PASS (function(){/else/.test(function g(else){ })}); true threw exception Synta
xError: Expected an identifier but found 'else' instead. | |
| 410 PASS try{}catch(else){}; true threw exception SyntaxError: Expected an identifie
r but found 'else' instead. | |
| 411 PASS (function(){try{}catch(else){}; true}); true threw exception SyntaxError: E
xpected an identifier but found 'else' instead. | |
| 412 PASS function else(){ }; true threw exception SyntaxError: Unexpected token 'el
se'. | |
| 413 PASS (function(){function else(){ }; true}); true threw exception SyntaxError:
Unexpected token 'else'. | |
| 414 PASS ({ "else": 42 }.else === 42) is true | |
| 415 PASS (function(){({ "else": 42 }.else === 42)}); true is true | |
| 416 PASS ({ else: 42 }.else === 42) is true | |
| 417 PASS (function(){({ else: 42 }.else === 42)}); true is true | |
| 418 PASS ({ get else(){}, set else(){}, parsedOkay: 42 }.parsedOkay === 42) is true | |
| 419 PASS (function(){({ get else(){}, set else(){}, parsedOkay: 42 }.parsedOkay ===
42)}); true is true | |
| 420 PASS "use strict";var else; true threw exception SyntaxError: Expected an identi
fier but found 'else' instead. | |
| 421 PASS (function(){"use strict";var else; true}); true threw exception SyntaxError
: Expected an identifier but found 'else' instead. | |
| 422 PASS "use strict";var else = 42; else === 42 threw exception SyntaxError: Expect
ed an identifier but found 'else' instead. | |
| 423 PASS (function(){"use strict";var else = 42; else === 42}); true threw exception
SyntaxError: Expected an identifier but found 'else' instead. | |
| 424 PASS "use strict";function g(else){ "use strict"; }; true threw exception Syntax
Error: Expected an identifier but found 'else' instead. | |
| 425 PASS (function(){"use strict";function g(else){ "use strict"; }; true}); true th
rew exception SyntaxError: Expected an identifier but found 'else' instead. | |
| 426 PASS "use strict";/else/.test(function g(else){ "use strict"; }) threw exception
SyntaxError: Expected an identifier but found 'else' instead. | |
| 427 PASS (function(){"use strict";/else/.test(function g(else){ "use strict"; })});
true threw exception SyntaxError: Expected an identifier but found 'else' instea
d. | |
| 428 PASS "use strict";try{}catch(else){}; true threw exception SyntaxError: Expected
an identifier but found 'else' instead. | |
| 429 PASS (function(){"use strict";try{}catch(else){}; true}); true threw exception S
yntaxError: Expected an identifier but found 'else' instead. | |
| 430 PASS "use strict";function else(){ "use strict"; }; true threw exception SyntaxE
rror: Unexpected token 'else'. | |
| 431 PASS (function(){"use strict";function else(){ "use strict"; }; true}); true thr
ew exception SyntaxError: Unexpected token 'else'. | |
| 432 PASS "use strict";({ "else": 42 }.else === 42) is true | |
| 433 PASS (function(){"use strict";({ "else": 42 }.else === 42)}); true is true | |
| 434 PASS "use strict";({ else: 42 }.else === 42) is true | |
| 435 PASS (function(){"use strict";({ else: 42 }.else === 42)}); true is true | |
| 436 PASS "use strict";({ get else(){}, set else(){}, parsedOkay: 42 }.parsedOkay ===
42) is true | |
| 437 PASS (function(){"use strict";({ get else(){}, set else(){}, parsedOkay: 42 }.pa
rsedOkay === 42)}); true is true | |
| 438 PASS var finally; true threw exception SyntaxError: Expected an identifier but f
ound 'finally' instead. | |
| 439 PASS (function(){var finally; true}); true threw exception SyntaxError: Expected
an identifier but found 'finally' instead. | |
| 440 PASS var finally = 42; finally === 42 threw exception SyntaxError: Expected an i
dentifier but found 'finally' instead. | |
| 441 PASS (function(){var finally = 42; finally === 42}); true threw exception Syntax
Error: Expected an identifier but found 'finally' instead. | |
| 442 PASS function g(finally){ }; true threw exception SyntaxError: Expected an iden
tifier but found 'finally' instead. | |
| 443 PASS (function(){function g(finally){ }; true}); true threw exception SyntaxErr
or: Expected an identifier but found 'finally' instead. | |
| 444 PASS /finally/.test(function g(finally){ }) threw exception SyntaxError: Expect
ed an identifier but found 'finally' instead. | |
| 445 PASS (function(){/finally/.test(function g(finally){ })}); true threw exception
SyntaxError: Expected an identifier but found 'finally' instead. | |
| 446 PASS try{}catch(finally){}; true threw exception SyntaxError: Expected an identi
fier but found 'finally' instead. | |
| 447 PASS (function(){try{}catch(finally){}; true}); true threw exception SyntaxError
: Expected an identifier but found 'finally' instead. | |
| 448 PASS function finally(){ }; true threw exception SyntaxError: Unexpected token
'finally'. | |
| 449 PASS (function(){function finally(){ }; true}); true threw exception SyntaxErro
r: Unexpected token 'finally'. | |
| 450 PASS ({ "finally": 42 }.finally === 42) is true | |
| 451 PASS (function(){({ "finally": 42 }.finally === 42)}); true is true | |
| 452 PASS ({ finally: 42 }.finally === 42) is true | |
| 453 PASS (function(){({ finally: 42 }.finally === 42)}); true is true | |
| 454 PASS ({ get finally(){}, set finally(){}, parsedOkay: 42 }.parsedOkay === 42) is
true | |
| 455 PASS (function(){({ get finally(){}, set finally(){}, parsedOkay: 42 }.parsedOka
y === 42)}); true is true | |
| 456 PASS "use strict";var finally; true threw exception SyntaxError: Expected an ide
ntifier but found 'finally' instead. | |
| 457 PASS (function(){"use strict";var finally; true}); true threw exception SyntaxEr
ror: Expected an identifier but found 'finally' instead. | |
| 458 PASS "use strict";var finally = 42; finally === 42 threw exception SyntaxError:
Expected an identifier but found 'finally' instead. | |
| 459 PASS (function(){"use strict";var finally = 42; finally === 42}); true threw exc
eption SyntaxError: Expected an identifier but found 'finally' instead. | |
| 460 PASS "use strict";function g(finally){ "use strict"; }; true threw exception Syn
taxError: Expected an identifier but found 'finally' instead. | |
| 461 PASS (function(){"use strict";function g(finally){ "use strict"; }; true}); true
threw exception SyntaxError: Expected an identifier but found 'finally' instead
. | |
| 462 PASS "use strict";/finally/.test(function g(finally){ "use strict"; }) threw exc
eption SyntaxError: Expected an identifier but found 'finally' instead. | |
| 463 PASS (function(){"use strict";/finally/.test(function g(finally){ "use strict";
})}); true threw exception SyntaxError: Expected an identifier but found 'finall
y' instead. | |
| 464 PASS "use strict";try{}catch(finally){}; true threw exception SyntaxError: Expec
ted an identifier but found 'finally' instead. | |
| 465 PASS (function(){"use strict";try{}catch(finally){}; true}); true threw exceptio
n SyntaxError: Expected an identifier but found 'finally' instead. | |
| 466 PASS "use strict";function finally(){ "use strict"; }; true threw exception Synt
axError: Unexpected token 'finally'. | |
| 467 PASS (function(){"use strict";function finally(){ "use strict"; }; true}); true
threw exception SyntaxError: Unexpected token 'finally'. | |
| 468 PASS "use strict";({ "finally": 42 }.finally === 42) is true | |
| 469 PASS (function(){"use strict";({ "finally": 42 }.finally === 42)}); true is true | |
| 470 PASS "use strict";({ finally: 42 }.finally === 42) is true | |
| 471 PASS (function(){"use strict";({ finally: 42 }.finally === 42)}); true is true | |
| 472 PASS "use strict";({ get finally(){}, set finally(){}, parsedOkay: 42 }.parsedOk
ay === 42) is true | |
| 473 PASS (function(){"use strict";({ get finally(){}, set finally(){}, parsedOkay: 4
2 }.parsedOkay === 42)}); true is true | |
| 474 PASS var for; true threw exception SyntaxError: Expected an identifier but found
'for' instead. | |
| 475 PASS (function(){var for; true}); true threw exception SyntaxError: Expected an
identifier but found 'for' instead. | |
| 476 PASS var for = 42; for === 42 threw exception SyntaxError: Expected an identifie
r but found 'for' instead. | |
| 477 PASS (function(){var for = 42; for === 42}); true threw exception SyntaxError: E
xpected an identifier but found 'for' instead. | |
| 478 PASS function g(for){ }; true threw exception SyntaxError: Expected an identifi
er but found 'for' instead. | |
| 479 PASS (function(){function g(for){ }; true}); true threw exception SyntaxError:
Expected an identifier but found 'for' instead. | |
| 480 PASS /for/.test(function g(for){ }) threw exception SyntaxError: Expected an id
entifier but found 'for' instead. | |
| 481 PASS (function(){/for/.test(function g(for){ })}); true threw exception SyntaxE
rror: Expected an identifier but found 'for' instead. | |
| 482 PASS try{}catch(for){}; true threw exception SyntaxError: Expected an identifier
but found 'for' instead. | |
| 483 PASS (function(){try{}catch(for){}; true}); true threw exception SyntaxError: Ex
pected an identifier but found 'for' instead. | |
| 484 PASS function for(){ }; true threw exception SyntaxError: Unexpected token 'for
'. | |
| 485 PASS (function(){function for(){ }; true}); true threw exception SyntaxError: U
nexpected token 'for'. | |
| 486 PASS ({ "for": 42 }.for === 42) is true | |
| 487 PASS (function(){({ "for": 42 }.for === 42)}); true is true | |
| 488 PASS ({ for: 42 }.for === 42) is true | |
| 489 PASS (function(){({ for: 42 }.for === 42)}); true is true | |
| 490 PASS ({ get for(){}, set for(){}, parsedOkay: 42 }.parsedOkay === 42) is true | |
| 491 PASS (function(){({ get for(){}, set for(){}, parsedOkay: 42 }.parsedOkay === 42
)}); true is true | |
| 492 PASS "use strict";var for; true threw exception SyntaxError: Expected an identif
ier but found 'for' instead. | |
| 493 PASS (function(){"use strict";var for; true}); true threw exception SyntaxError:
Expected an identifier but found 'for' instead. | |
| 494 PASS "use strict";var for = 42; for === 42 threw exception SyntaxError: Expected
an identifier but found 'for' instead. | |
| 495 PASS (function(){"use strict";var for = 42; for === 42}); true threw exception S
yntaxError: Expected an identifier but found 'for' instead. | |
| 496 PASS "use strict";function g(for){ "use strict"; }; true threw exception SyntaxE
rror: Expected an identifier but found 'for' instead. | |
| 497 PASS (function(){"use strict";function g(for){ "use strict"; }; true}); true thr
ew exception SyntaxError: Expected an identifier but found 'for' instead. | |
| 498 PASS "use strict";/for/.test(function g(for){ "use strict"; }) threw exception S
yntaxError: Expected an identifier but found 'for' instead. | |
| 499 PASS (function(){"use strict";/for/.test(function g(for){ "use strict"; })}); tr
ue threw exception SyntaxError: Expected an identifier but found 'for' instead. | |
| 500 PASS "use strict";try{}catch(for){}; true threw exception SyntaxError: Expected
an identifier but found 'for' instead. | |
| 501 PASS (function(){"use strict";try{}catch(for){}; true}); true threw exception Sy
ntaxError: Expected an identifier but found 'for' instead. | |
| 502 PASS "use strict";function for(){ "use strict"; }; true threw exception SyntaxEr
ror: Unexpected token 'for'. | |
| 503 PASS (function(){"use strict";function for(){ "use strict"; }; true}); true thre
w exception SyntaxError: Unexpected token 'for'. | |
| 504 PASS "use strict";({ "for": 42 }.for === 42) is true | |
| 505 PASS (function(){"use strict";({ "for": 42 }.for === 42)}); true is true | |
| 506 PASS "use strict";({ for: 42 }.for === 42) is true | |
| 507 PASS (function(){"use strict";({ for: 42 }.for === 42)}); true is true | |
| 508 PASS "use strict";({ get for(){}, set for(){}, parsedOkay: 42 }.parsedOkay === 4
2) is true | |
| 509 PASS (function(){"use strict";({ get for(){}, set for(){}, parsedOkay: 42 }.pars
edOkay === 42)}); true is true | |
| 510 PASS var function; true threw exception SyntaxError: Expected an identifier but
found 'function' instead. | |
| 511 PASS (function(){var function; true}); true threw exception SyntaxError: Expecte
d an identifier but found 'function' instead. | |
| 512 PASS var function = 42; function === 42 threw exception SyntaxError: Expected an
identifier but found 'function' instead. | |
| 513 PASS (function(){var function = 42; function === 42}); true threw exception Synt
axError: Expected an identifier but found 'function' instead. | |
| 514 PASS function g(function){ }; true threw exception SyntaxError: Expected an ide
ntifier but found 'function' instead. | |
| 515 PASS (function(){function g(function){ }; true}); true threw exception SyntaxEr
ror: Expected an identifier but found 'function' instead. | |
| 516 PASS /function/.test(function g(function){ }) threw exception SyntaxError: Expe
cted an identifier but found 'function' instead. | |
| 517 PASS (function(){/function/.test(function g(function){ })}); true threw excepti
on SyntaxError: Expected an identifier but found 'function' instead. | |
| 518 PASS try{}catch(function){}; true threw exception SyntaxError: Expected an ident
ifier but found 'function' instead. | |
| 519 PASS (function(){try{}catch(function){}; true}); true threw exception SyntaxErro
r: Expected an identifier but found 'function' instead. | |
| 520 PASS function function(){ }; true threw exception SyntaxError: Unexpected token
'function'. | |
| 521 PASS (function(){function function(){ }; true}); true threw exception SyntaxErr
or: Unexpected token 'function'. | |
| 522 PASS ({ "function": 42 }.function === 42) is true | |
| 523 PASS (function(){({ "function": 42 }.function === 42)}); true is true | |
| 524 PASS ({ function: 42 }.function === 42) is true | |
| 525 PASS (function(){({ function: 42 }.function === 42)}); true is true | |
| 526 PASS ({ get function(){}, set function(){}, parsedOkay: 42 }.parsedOkay === 42)
is true | |
| 527 PASS (function(){({ get function(){}, set function(){}, parsedOkay: 42 }.parsedO
kay === 42)}); true is true | |
| 528 PASS "use strict";var function; true threw exception SyntaxError: Expected an id
entifier but found 'function' instead. | |
| 529 PASS (function(){"use strict";var function; true}); true threw exception SyntaxE
rror: Expected an identifier but found 'function' instead. | |
| 530 PASS "use strict";var function = 42; function === 42 threw exception SyntaxError
: Expected an identifier but found 'function' instead. | |
| 531 PASS (function(){"use strict";var function = 42; function === 42}); true threw e
xception SyntaxError: Expected an identifier but found 'function' instead. | |
| 532 PASS "use strict";function g(function){ "use strict"; }; true threw exception Sy
ntaxError: Expected an identifier but found 'function' instead. | |
| 533 PASS (function(){"use strict";function g(function){ "use strict"; }; true}); tru
e threw exception SyntaxError: Expected an identifier but found 'function' inste
ad. | |
| 534 PASS "use strict";/function/.test(function g(function){ "use strict"; }) threw e
xception SyntaxError: Expected an identifier but found 'function' instead. | |
| 535 PASS (function(){"use strict";/function/.test(function g(function){ "use strict"
; })}); true threw exception SyntaxError: Expected an identifier but found 'func
tion' instead. | |
| 536 PASS "use strict";try{}catch(function){}; true threw exception SyntaxError: Expe
cted an identifier but found 'function' instead. | |
| 537 PASS (function(){"use strict";try{}catch(function){}; true}); true threw excepti
on SyntaxError: Expected an identifier but found 'function' instead. | |
| 538 PASS "use strict";function function(){ "use strict"; }; true threw exception Syn
taxError: Unexpected token 'function'. | |
| 539 PASS (function(){"use strict";function function(){ "use strict"; }; true}); true
threw exception SyntaxError: Unexpected token 'function'. | |
| 540 PASS "use strict";({ "function": 42 }.function === 42) is true | |
| 541 PASS (function(){"use strict";({ "function": 42 }.function === 42)}); true is tr
ue | |
| 542 PASS "use strict";({ function: 42 }.function === 42) is true | |
| 543 PASS (function(){"use strict";({ function: 42 }.function === 42)}); true is true | |
| 544 PASS "use strict";({ get function(){}, set function(){}, parsedOkay: 42 }.parsed
Okay === 42) is true | |
| 545 PASS (function(){"use strict";({ get function(){}, set function(){}, parsedOkay:
42 }.parsedOkay === 42)}); true is true | |
| 546 PASS var if; true threw exception SyntaxError: Expected an identifier but found
'if' instead. | |
| 547 PASS (function(){var if; true}); true threw exception SyntaxError: Expected an i
dentifier but found 'if' instead. | |
| 548 PASS var if = 42; if === 42 threw exception SyntaxError: Expected an identifier
but found 'if' instead. | |
| 549 PASS (function(){var if = 42; if === 42}); true threw exception SyntaxError: Exp
ected an identifier but found 'if' instead. | |
| 550 PASS function g(if){ }; true threw exception SyntaxError: Expected an identifie
r but found 'if' instead. | |
| 551 PASS (function(){function g(if){ }; true}); true threw exception SyntaxError: E
xpected an identifier but found 'if' instead. | |
| 552 PASS /if/.test(function g(if){ }) threw exception SyntaxError: Expected an iden
tifier but found 'if' instead. | |
| 553 PASS (function(){/if/.test(function g(if){ })}); true threw exception SyntaxErr
or: Expected an identifier but found 'if' instead. | |
| 554 PASS try{}catch(if){}; true threw exception SyntaxError: Expected an identifier
but found 'if' instead. | |
| 555 PASS (function(){try{}catch(if){}; true}); true threw exception SyntaxError: Exp
ected an identifier but found 'if' instead. | |
| 556 PASS function if(){ }; true threw exception SyntaxError: Unexpected token 'if'. | |
| 557 PASS (function(){function if(){ }; true}); true threw exception SyntaxError: Un
expected token 'if'. | |
| 558 PASS ({ "if": 42 }.if === 42) is true | |
| 559 PASS (function(){({ "if": 42 }.if === 42)}); true is true | |
| 560 PASS ({ if: 42 }.if === 42) is true | |
| 561 PASS (function(){({ if: 42 }.if === 42)}); true is true | |
| 562 PASS ({ get if(){}, set if(){}, parsedOkay: 42 }.parsedOkay === 42) is true | |
| 563 PASS (function(){({ get if(){}, set if(){}, parsedOkay: 42 }.parsedOkay === 42)}
); true is true | |
| 564 PASS "use strict";var if; true threw exception SyntaxError: Expected an identifi
er but found 'if' instead. | |
| 565 PASS (function(){"use strict";var if; true}); true threw exception SyntaxError:
Expected an identifier but found 'if' instead. | |
| 566 PASS "use strict";var if = 42; if === 42 threw exception SyntaxError: Expected a
n identifier but found 'if' instead. | |
| 567 PASS (function(){"use strict";var if = 42; if === 42}); true threw exception Syn
taxError: Expected an identifier but found 'if' instead. | |
| 568 PASS "use strict";function g(if){ "use strict"; }; true threw exception SyntaxEr
ror: Expected an identifier but found 'if' instead. | |
| 569 PASS (function(){"use strict";function g(if){ "use strict"; }; true}); true thre
w exception SyntaxError: Expected an identifier but found 'if' instead. | |
| 570 PASS "use strict";/if/.test(function g(if){ "use strict"; }) threw exception Syn
taxError: Expected an identifier but found 'if' instead. | |
| 571 PASS (function(){"use strict";/if/.test(function g(if){ "use strict"; })}); true
threw exception SyntaxError: Expected an identifier but found 'if' instead. | |
| 572 PASS "use strict";try{}catch(if){}; true threw exception SyntaxError: Expected a
n identifier but found 'if' instead. | |
| 573 PASS (function(){"use strict";try{}catch(if){}; true}); true threw exception Syn
taxError: Expected an identifier but found 'if' instead. | |
| 574 PASS "use strict";function if(){ "use strict"; }; true threw exception SyntaxErr
or: Unexpected token 'if'. | |
| 575 PASS (function(){"use strict";function if(){ "use strict"; }; true}); true threw
exception SyntaxError: Unexpected token 'if'. | |
| 576 PASS "use strict";({ "if": 42 }.if === 42) is true | |
| 577 PASS (function(){"use strict";({ "if": 42 }.if === 42)}); true is true | |
| 578 PASS "use strict";({ if: 42 }.if === 42) is true | |
| 579 PASS (function(){"use strict";({ if: 42 }.if === 42)}); true is true | |
| 580 PASS "use strict";({ get if(){}, set if(){}, parsedOkay: 42 }.parsedOkay === 42)
is true | |
| 581 PASS (function(){"use strict";({ get if(){}, set if(){}, parsedOkay: 42 }.parsed
Okay === 42)}); true is true | |
| 582 PASS var in; true threw exception SyntaxError: Expected an identifier but found
'in' instead. | |
| 583 PASS (function(){var in; true}); true threw exception SyntaxError: Expected an i
dentifier but found 'in' instead. | |
| 584 PASS var in = 42; in === 42 threw exception SyntaxError: Expected an identifier
but found 'in' instead. | |
| 585 PASS (function(){var in = 42; in === 42}); true threw exception SyntaxError: Exp
ected an identifier but found 'in' instead. | |
| 586 PASS function g(in){ }; true threw exception SyntaxError: Expected an identifie
r but found 'in' instead. | |
| 587 PASS (function(){function g(in){ }; true}); true threw exception SyntaxError: E
xpected an identifier but found 'in' instead. | |
| 588 PASS /in/.test(function g(in){ }) threw exception SyntaxError: Expected an iden
tifier but found 'in' instead. | |
| 589 PASS (function(){/in/.test(function g(in){ })}); true threw exception SyntaxErr
or: Expected an identifier but found 'in' instead. | |
| 590 PASS try{}catch(in){}; true threw exception SyntaxError: Expected an identifier
but found 'in' instead. | |
| 591 PASS (function(){try{}catch(in){}; true}); true threw exception SyntaxError: Exp
ected an identifier but found 'in' instead. | |
| 592 PASS function in(){ }; true threw exception SyntaxError: Unexpected token 'in'. | |
| 593 PASS (function(){function in(){ }; true}); true threw exception SyntaxError: Un
expected token 'in'. | |
| 594 PASS ({ "in": 42 }.in === 42) is true | |
| 595 PASS (function(){({ "in": 42 }.in === 42)}); true is true | |
| 596 PASS ({ in: 42 }.in === 42) is true | |
| 597 PASS (function(){({ in: 42 }.in === 42)}); true is true | |
| 598 PASS ({ get in(){}, set in(){}, parsedOkay: 42 }.parsedOkay === 42) is true | |
| 599 PASS (function(){({ get in(){}, set in(){}, parsedOkay: 42 }.parsedOkay === 42)}
); true is true | |
| 600 PASS "use strict";var in; true threw exception SyntaxError: Expected an identifi
er but found 'in' instead. | |
| 601 PASS (function(){"use strict";var in; true}); true threw exception SyntaxError:
Expected an identifier but found 'in' instead. | |
| 602 PASS "use strict";var in = 42; in === 42 threw exception SyntaxError: Expected a
n identifier but found 'in' instead. | |
| 603 PASS (function(){"use strict";var in = 42; in === 42}); true threw exception Syn
taxError: Expected an identifier but found 'in' instead. | |
| 604 PASS "use strict";function g(in){ "use strict"; }; true threw exception SyntaxEr
ror: Expected an identifier but found 'in' instead. | |
| 605 PASS (function(){"use strict";function g(in){ "use strict"; }; true}); true thre
w exception SyntaxError: Expected an identifier but found 'in' instead. | |
| 606 PASS "use strict";/in/.test(function g(in){ "use strict"; }) threw exception Syn
taxError: Expected an identifier but found 'in' instead. | |
| 607 PASS (function(){"use strict";/in/.test(function g(in){ "use strict"; })}); true
threw exception SyntaxError: Expected an identifier but found 'in' instead. | |
| 608 PASS "use strict";try{}catch(in){}; true threw exception SyntaxError: Expected a
n identifier but found 'in' instead. | |
| 609 PASS (function(){"use strict";try{}catch(in){}; true}); true threw exception Syn
taxError: Expected an identifier but found 'in' instead. | |
| 610 PASS "use strict";function in(){ "use strict"; }; true threw exception SyntaxErr
or: Unexpected token 'in'. | |
| 611 PASS (function(){"use strict";function in(){ "use strict"; }; true}); true threw
exception SyntaxError: Unexpected token 'in'. | |
| 612 PASS "use strict";({ "in": 42 }.in === 42) is true | |
| 613 PASS (function(){"use strict";({ "in": 42 }.in === 42)}); true is true | |
| 614 PASS "use strict";({ in: 42 }.in === 42) is true | |
| 615 PASS (function(){"use strict";({ in: 42 }.in === 42)}); true is true | |
| 616 PASS "use strict";({ get in(){}, set in(){}, parsedOkay: 42 }.parsedOkay === 42)
is true | |
| 617 PASS (function(){"use strict";({ get in(){}, set in(){}, parsedOkay: 42 }.parsed
Okay === 42)}); true is true | |
| 618 PASS var instanceof; true threw exception SyntaxError: Expected an identifier bu
t found 'instanceof' instead. | |
| 619 PASS (function(){var instanceof; true}); true threw exception SyntaxError: Expec
ted an identifier but found 'instanceof' instead. | |
| 620 PASS var instanceof = 42; instanceof === 42 threw exception SyntaxError: Expecte
d an identifier but found 'instanceof' instead. | |
| 621 PASS (function(){var instanceof = 42; instanceof === 42}); true threw exception
SyntaxError: Expected an identifier but found 'instanceof' instead. | |
| 622 PASS function g(instanceof){ }; true threw exception SyntaxError: Expected an i
dentifier but found 'instanceof' instead. | |
| 623 PASS (function(){function g(instanceof){ }; true}); true threw exception Syntax
Error: Expected an identifier but found 'instanceof' instead. | |
| 624 PASS /instanceof/.test(function g(instanceof){ }) threw exception SyntaxError:
Expected an identifier but found 'instanceof' instead. | |
| 625 PASS (function(){/instanceof/.test(function g(instanceof){ })}); true threw exc
eption SyntaxError: Expected an identifier but found 'instanceof' instead. | |
| 626 PASS try{}catch(instanceof){}; true threw exception SyntaxError: Expected an ide
ntifier but found 'instanceof' instead. | |
| 627 PASS (function(){try{}catch(instanceof){}; true}); true threw exception SyntaxEr
ror: Expected an identifier but found 'instanceof' instead. | |
| 628 PASS function instanceof(){ }; true threw exception SyntaxError: Unexpected tok
en 'instanceof'. | |
| 629 PASS (function(){function instanceof(){ }; true}); true threw exception SyntaxE
rror: Unexpected token 'instanceof'. | |
| 630 PASS ({ "instanceof": 42 }.instanceof === 42) is true | |
| 631 PASS (function(){({ "instanceof": 42 }.instanceof === 42)}); true is true | |
| 632 PASS ({ instanceof: 42 }.instanceof === 42) is true | |
| 633 PASS (function(){({ instanceof: 42 }.instanceof === 42)}); true is true | |
| 634 PASS ({ get instanceof(){}, set instanceof(){}, parsedOkay: 42 }.parsedOkay ===
42) is true | |
| 635 PASS (function(){({ get instanceof(){}, set instanceof(){}, parsedOkay: 42 }.par
sedOkay === 42)}); true is true | |
| 636 PASS "use strict";var instanceof; true threw exception SyntaxError: Expected an
identifier but found 'instanceof' instead. | |
| 637 PASS (function(){"use strict";var instanceof; true}); true threw exception Synta
xError: Expected an identifier but found 'instanceof' instead. | |
| 638 PASS "use strict";var instanceof = 42; instanceof === 42 threw exception SyntaxE
rror: Expected an identifier but found 'instanceof' instead. | |
| 639 PASS (function(){"use strict";var instanceof = 42; instanceof === 42}); true thr
ew exception SyntaxError: Expected an identifier but found 'instanceof' instead. | |
| 640 PASS "use strict";function g(instanceof){ "use strict"; }; true threw exception
SyntaxError: Expected an identifier but found 'instanceof' instead. | |
| 641 PASS (function(){"use strict";function g(instanceof){ "use strict"; }; true}); t
rue threw exception SyntaxError: Expected an identifier but found 'instanceof' i
nstead. | |
| 642 PASS "use strict";/instanceof/.test(function g(instanceof){ "use strict"; }) thr
ew exception SyntaxError: Expected an identifier but found 'instanceof' instead. | |
| 643 PASS (function(){"use strict";/instanceof/.test(function g(instanceof){ "use str
ict"; })}); true threw exception SyntaxError: Expected an identifier but found '
instanceof' instead. | |
| 644 PASS "use strict";try{}catch(instanceof){}; true threw exception SyntaxError: Ex
pected an identifier but found 'instanceof' instead. | |
| 645 PASS (function(){"use strict";try{}catch(instanceof){}; true}); true threw excep
tion SyntaxError: Expected an identifier but found 'instanceof' instead. | |
| 646 PASS "use strict";function instanceof(){ "use strict"; }; true threw exception S
yntaxError: Unexpected token 'instanceof'. | |
| 647 PASS (function(){"use strict";function instanceof(){ "use strict"; }; true}); tr
ue threw exception SyntaxError: Unexpected token 'instanceof'. | |
| 648 PASS "use strict";({ "instanceof": 42 }.instanceof === 42) is true | |
| 649 PASS (function(){"use strict";({ "instanceof": 42 }.instanceof === 42)}); true i
s true | |
| 650 PASS "use strict";({ instanceof: 42 }.instanceof === 42) is true | |
| 651 PASS (function(){"use strict";({ instanceof: 42 }.instanceof === 42)}); true is
true | |
| 652 PASS "use strict";({ get instanceof(){}, set instanceof(){}, parsedOkay: 42 }.pa
rsedOkay === 42) is true | |
| 653 PASS (function(){"use strict";({ get instanceof(){}, set instanceof(){}, parsedO
kay: 42 }.parsedOkay === 42)}); true is true | |
| 654 PASS var new; true threw exception SyntaxError: Expected an identifier but found
'new' instead. | |
| 655 PASS (function(){var new; true}); true threw exception SyntaxError: Expected an
identifier but found 'new' instead. | |
| 656 PASS var new = 42; new === 42 threw exception SyntaxError: Expected an identifie
r but found 'new' instead. | |
| 657 PASS (function(){var new = 42; new === 42}); true threw exception SyntaxError: E
xpected an identifier but found 'new' instead. | |
| 658 PASS function g(new){ }; true threw exception SyntaxError: Expected an identifi
er but found 'new' instead. | |
| 659 PASS (function(){function g(new){ }; true}); true threw exception SyntaxError:
Expected an identifier but found 'new' instead. | |
| 660 PASS /new/.test(function g(new){ }) threw exception SyntaxError: Expected an id
entifier but found 'new' instead. | |
| 661 PASS (function(){/new/.test(function g(new){ })}); true threw exception SyntaxE
rror: Expected an identifier but found 'new' instead. | |
| 662 PASS try{}catch(new){}; true threw exception SyntaxError: Expected an identifier
but found 'new' instead. | |
| 663 PASS (function(){try{}catch(new){}; true}); true threw exception SyntaxError: Ex
pected an identifier but found 'new' instead. | |
| 664 PASS function new(){ }; true threw exception SyntaxError: Unexpected token 'new
'. | |
| 665 PASS (function(){function new(){ }; true}); true threw exception SyntaxError: U
nexpected token 'new'. | |
| 666 PASS ({ "new": 42 }.new === 42) is true | |
| 667 PASS (function(){({ "new": 42 }.new === 42)}); true is true | |
| 668 PASS ({ new: 42 }.new === 42) is true | |
| 669 PASS (function(){({ new: 42 }.new === 42)}); true is true | |
| 670 PASS ({ get new(){}, set new(){}, parsedOkay: 42 }.parsedOkay === 42) is true | |
| 671 PASS (function(){({ get new(){}, set new(){}, parsedOkay: 42 }.parsedOkay === 42
)}); true is true | |
| 672 PASS "use strict";var new; true threw exception SyntaxError: Expected an identif
ier but found 'new' instead. | |
| 673 PASS (function(){"use strict";var new; true}); true threw exception SyntaxError:
Expected an identifier but found 'new' instead. | |
| 674 PASS "use strict";var new = 42; new === 42 threw exception SyntaxError: Expected
an identifier but found 'new' instead. | |
| 675 PASS (function(){"use strict";var new = 42; new === 42}); true threw exception S
yntaxError: Expected an identifier but found 'new' instead. | |
| 676 PASS "use strict";function g(new){ "use strict"; }; true threw exception SyntaxE
rror: Expected an identifier but found 'new' instead. | |
| 677 PASS (function(){"use strict";function g(new){ "use strict"; }; true}); true thr
ew exception SyntaxError: Expected an identifier but found 'new' instead. | |
| 678 PASS "use strict";/new/.test(function g(new){ "use strict"; }) threw exception S
yntaxError: Expected an identifier but found 'new' instead. | |
| 679 PASS (function(){"use strict";/new/.test(function g(new){ "use strict"; })}); tr
ue threw exception SyntaxError: Expected an identifier but found 'new' instead. | |
| 680 PASS "use strict";try{}catch(new){}; true threw exception SyntaxError: Expected
an identifier but found 'new' instead. | |
| 681 PASS (function(){"use strict";try{}catch(new){}; true}); true threw exception Sy
ntaxError: Expected an identifier but found 'new' instead. | |
| 682 PASS "use strict";function new(){ "use strict"; }; true threw exception SyntaxEr
ror: Unexpected token 'new'. | |
| 683 PASS (function(){"use strict";function new(){ "use strict"; }; true}); true thre
w exception SyntaxError: Unexpected token 'new'. | |
| 684 PASS "use strict";({ "new": 42 }.new === 42) is true | |
| 685 PASS (function(){"use strict";({ "new": 42 }.new === 42)}); true is true | |
| 686 PASS "use strict";({ new: 42 }.new === 42) is true | |
| 687 PASS (function(){"use strict";({ new: 42 }.new === 42)}); true is true | |
| 688 PASS "use strict";({ get new(){}, set new(){}, parsedOkay: 42 }.parsedOkay === 4
2) is true | |
| 689 PASS (function(){"use strict";({ get new(){}, set new(){}, parsedOkay: 42 }.pars
edOkay === 42)}); true is true | |
| 690 PASS var return; true threw exception SyntaxError: Return statements are only va
lid inside functions. | |
| 691 PASS (function(){var return; true}); true threw exception SyntaxError: Return st
atements are only valid inside functions. | |
| 692 PASS var return = 42; return === 42 threw exception SyntaxError: Return statemen
ts are only valid inside functions. | |
| 693 PASS (function(){var return = 42; return === 42}); true threw exception SyntaxEr
ror: Return statements are only valid inside functions. | |
| 694 PASS function g(return){ }; true threw exception SyntaxError: Return statements
are only valid inside functions. | |
| 695 PASS (function(){function g(return){ }; true}); true threw exception SyntaxErro
r: Return statements are only valid inside functions. | |
| 696 PASS /return/.test(function g(return){ }) threw exception SyntaxError: Return s
tatements are only valid inside functions. | |
| 697 PASS (function(){/return/.test(function g(return){ })}); true threw exception S
yntaxError: Return statements are only valid inside functions. | |
| 698 PASS try{}catch(return){}; true threw exception SyntaxError: Return statements a
re only valid inside functions. | |
| 699 PASS (function(){try{}catch(return){}; true}); true threw exception SyntaxError:
Return statements are only valid inside functions. | |
| 700 PASS function return(){ }; true threw exception SyntaxError: Return statements
are only valid inside functions. | |
| 701 PASS (function(){function return(){ }; true}); true threw exception SyntaxError
: Return statements are only valid inside functions. | |
| 702 PASS ({ "return": 42 }.return === 42) is true | |
| 703 PASS (function(){({ "return": 42 }.return === 42)}); true is true | |
| 704 PASS ({ return: 42 }.return === 42) is true | |
| 705 PASS (function(){({ return: 42 }.return === 42)}); true is true | |
| 706 PASS ({ get return(){}, set return(){}, parsedOkay: 42 }.parsedOkay === 42) is t
rue | |
| 707 PASS (function(){({ get return(){}, set return(){}, parsedOkay: 42 }.parsedOkay
=== 42)}); true is true | |
| 708 PASS "use strict";var return; true threw exception SyntaxError: Return statement
s are only valid inside functions. | |
| 709 PASS (function(){"use strict";var return; true}); true threw exception SyntaxErr
or: Return statements are only valid inside functions. | |
| 710 PASS "use strict";var return = 42; return === 42 threw exception SyntaxError: Re
turn statements are only valid inside functions. | |
| 711 PASS (function(){"use strict";var return = 42; return === 42}); true threw excep
tion SyntaxError: Return statements are only valid inside functions. | |
| 712 PASS "use strict";function g(return){ "use strict"; }; true threw exception Synt
axError: Return statements are only valid inside functions. | |
| 713 PASS (function(){"use strict";function g(return){ "use strict"; }; true}); true
threw exception SyntaxError: Return statements are only valid inside functions. | |
| 714 PASS "use strict";/return/.test(function g(return){ "use strict"; }) threw excep
tion SyntaxError: Return statements are only valid inside functions. | |
| 715 PASS (function(){"use strict";/return/.test(function g(return){ "use strict"; })
}); true threw exception SyntaxError: Return statements are only valid inside fu
nctions. | |
| 716 PASS "use strict";try{}catch(return){}; true threw exception SyntaxError: Return
statements are only valid inside functions. | |
| 717 PASS (function(){"use strict";try{}catch(return){}; true}); true threw exception
SyntaxError: Return statements are only valid inside functions. | |
| 718 PASS "use strict";function return(){ "use strict"; }; true threw exception Synta
xError: Return statements are only valid inside functions. | |
| 719 PASS (function(){"use strict";function return(){ "use strict"; }; true}); true t
hrew exception SyntaxError: Return statements are only valid inside functions. | |
| 720 PASS "use strict";({ "return": 42 }.return === 42) is true | |
| 721 PASS (function(){"use strict";({ "return": 42 }.return === 42)}); true is true | |
| 722 PASS "use strict";({ return: 42 }.return === 42) is true | |
| 723 PASS (function(){"use strict";({ return: 42 }.return === 42)}); true is true | |
| 724 PASS "use strict";({ get return(){}, set return(){}, parsedOkay: 42 }.parsedOkay
=== 42) is true | |
| 725 PASS (function(){"use strict";({ get return(){}, set return(){}, parsedOkay: 42
}.parsedOkay === 42)}); true is true | |
| 726 PASS var switch; true threw exception SyntaxError: Expected an identifier but fo
und 'switch' instead. | |
| 727 PASS (function(){var switch; true}); true threw exception SyntaxError: Expected
an identifier but found 'switch' instead. | |
| 728 PASS var switch = 42; switch === 42 threw exception SyntaxError: Expected an ide
ntifier but found 'switch' instead. | |
| 729 PASS (function(){var switch = 42; switch === 42}); true threw exception SyntaxEr
ror: Expected an identifier but found 'switch' instead. | |
| 730 PASS function g(switch){ }; true threw exception SyntaxError: Expected an ident
ifier but found 'switch' instead. | |
| 731 PASS (function(){function g(switch){ }; true}); true threw exception SyntaxErro
r: Expected an identifier but found 'switch' instead. | |
| 732 PASS /switch/.test(function g(switch){ }) threw exception SyntaxError: Expected
an identifier but found 'switch' instead. | |
| 733 PASS (function(){/switch/.test(function g(switch){ })}); true threw exception S
yntaxError: Expected an identifier but found 'switch' instead. | |
| 734 PASS try{}catch(switch){}; true threw exception SyntaxError: Expected an identif
ier but found 'switch' instead. | |
| 735 PASS (function(){try{}catch(switch){}; true}); true threw exception SyntaxError:
Expected an identifier but found 'switch' instead. | |
| 736 PASS function switch(){ }; true threw exception SyntaxError: Unexpected token '
switch'. | |
| 737 PASS (function(){function switch(){ }; true}); true threw exception SyntaxError
: Unexpected token 'switch'. | |
| 738 PASS ({ "switch": 42 }.switch === 42) is true | |
| 739 PASS (function(){({ "switch": 42 }.switch === 42)}); true is true | |
| 740 PASS ({ switch: 42 }.switch === 42) is true | |
| 741 PASS (function(){({ switch: 42 }.switch === 42)}); true is true | |
| 742 PASS ({ get switch(){}, set switch(){}, parsedOkay: 42 }.parsedOkay === 42) is t
rue | |
| 743 PASS (function(){({ get switch(){}, set switch(){}, parsedOkay: 42 }.parsedOkay
=== 42)}); true is true | |
| 744 PASS "use strict";var switch; true threw exception SyntaxError: Expected an iden
tifier but found 'switch' instead. | |
| 745 PASS (function(){"use strict";var switch; true}); true threw exception SyntaxErr
or: Expected an identifier but found 'switch' instead. | |
| 746 PASS "use strict";var switch = 42; switch === 42 threw exception SyntaxError: Ex
pected an identifier but found 'switch' instead. | |
| 747 PASS (function(){"use strict";var switch = 42; switch === 42}); true threw excep
tion SyntaxError: Expected an identifier but found 'switch' instead. | |
| 748 PASS "use strict";function g(switch){ "use strict"; }; true threw exception Synt
axError: Expected an identifier but found 'switch' instead. | |
| 749 PASS (function(){"use strict";function g(switch){ "use strict"; }; true}); true
threw exception SyntaxError: Expected an identifier but found 'switch' instead. | |
| 750 PASS "use strict";/switch/.test(function g(switch){ "use strict"; }) threw excep
tion SyntaxError: Expected an identifier but found 'switch' instead. | |
| 751 PASS (function(){"use strict";/switch/.test(function g(switch){ "use strict"; })
}); true threw exception SyntaxError: Expected an identifier but found 'switch'
instead. | |
| 752 PASS "use strict";try{}catch(switch){}; true threw exception SyntaxError: Expect
ed an identifier but found 'switch' instead. | |
| 753 PASS (function(){"use strict";try{}catch(switch){}; true}); true threw exception
SyntaxError: Expected an identifier but found 'switch' instead. | |
| 754 PASS "use strict";function switch(){ "use strict"; }; true threw exception Synta
xError: Unexpected token 'switch'. | |
| 755 PASS (function(){"use strict";function switch(){ "use strict"; }; true}); true t
hrew exception SyntaxError: Unexpected token 'switch'. | |
| 756 PASS "use strict";({ "switch": 42 }.switch === 42) is true | |
| 757 PASS (function(){"use strict";({ "switch": 42 }.switch === 42)}); true is true | |
| 758 PASS "use strict";({ switch: 42 }.switch === 42) is true | |
| 759 PASS (function(){"use strict";({ switch: 42 }.switch === 42)}); true is true | |
| 760 PASS "use strict";({ get switch(){}, set switch(){}, parsedOkay: 42 }.parsedOkay
=== 42) is true | |
| 761 PASS (function(){"use strict";({ get switch(){}, set switch(){}, parsedOkay: 42
}.parsedOkay === 42)}); true is true | |
| 762 PASS var this; true threw exception SyntaxError: Expected an identifier but foun
d 'this' instead. | |
| 763 PASS (function(){var this; true}); true threw exception SyntaxError: Expected an
identifier but found 'this' instead. | |
| 764 PASS var this = 42; this === 42 threw exception SyntaxError: Expected an identif
ier but found 'this' instead. | |
| 765 PASS (function(){var this = 42; this === 42}); true threw exception SyntaxError:
Expected an identifier but found 'this' instead. | |
| 766 PASS function g(this){ }; true threw exception SyntaxError: Expected an identif
ier but found 'this' instead. | |
| 767 PASS (function(){function g(this){ }; true}); true threw exception SyntaxError:
Expected an identifier but found 'this' instead. | |
| 768 PASS /this/.test(function g(this){ }) threw exception SyntaxError: Expected an
identifier but found 'this' instead. | |
| 769 PASS (function(){/this/.test(function g(this){ })}); true threw exception Synta
xError: Expected an identifier but found 'this' instead. | |
| 770 PASS try{}catch(this){}; true threw exception SyntaxError: Expected an identifie
r but found 'this' instead. | |
| 771 PASS (function(){try{}catch(this){}; true}); true threw exception SyntaxError: E
xpected an identifier but found 'this' instead. | |
| 772 PASS function this(){ }; true threw exception SyntaxError: Unexpected token 'th
is'. | |
| 773 PASS (function(){function this(){ }; true}); true threw exception SyntaxError:
Unexpected token 'this'. | |
| 774 PASS ({ "this": 42 }.this === 42) is true | |
| 775 PASS (function(){({ "this": 42 }.this === 42)}); true is true | |
| 776 PASS ({ this: 42 }.this === 42) is true | |
| 777 PASS (function(){({ this: 42 }.this === 42)}); true is true | |
| 778 PASS ({ get this(){}, set this(){}, parsedOkay: 42 }.parsedOkay === 42) is true | |
| 779 PASS (function(){({ get this(){}, set this(){}, parsedOkay: 42 }.parsedOkay ===
42)}); true is true | |
| 780 PASS "use strict";var this; true threw exception SyntaxError: Expected an identi
fier but found 'this' instead. | |
| 781 PASS (function(){"use strict";var this; true}); true threw exception SyntaxError
: Expected an identifier but found 'this' instead. | |
| 782 PASS "use strict";var this = 42; this === 42 threw exception SyntaxError: Expect
ed an identifier but found 'this' instead. | |
| 783 PASS (function(){"use strict";var this = 42; this === 42}); true threw exception
SyntaxError: Expected an identifier but found 'this' instead. | |
| 784 PASS "use strict";function g(this){ "use strict"; }; true threw exception Syntax
Error: Expected an identifier but found 'this' instead. | |
| 785 PASS (function(){"use strict";function g(this){ "use strict"; }; true}); true th
rew exception SyntaxError: Expected an identifier but found 'this' instead. | |
| 786 PASS "use strict";/this/.test(function g(this){ "use strict"; }) threw exception
SyntaxError: Expected an identifier but found 'this' instead. | |
| 787 PASS (function(){"use strict";/this/.test(function g(this){ "use strict"; })});
true threw exception SyntaxError: Expected an identifier but found 'this' instea
d. | |
| 788 PASS "use strict";try{}catch(this){}; true threw exception SyntaxError: Expected
an identifier but found 'this' instead. | |
| 789 PASS (function(){"use strict";try{}catch(this){}; true}); true threw exception S
yntaxError: Expected an identifier but found 'this' instead. | |
| 790 PASS "use strict";function this(){ "use strict"; }; true threw exception SyntaxE
rror: Unexpected token 'this'. | |
| 791 PASS (function(){"use strict";function this(){ "use strict"; }; true}); true thr
ew exception SyntaxError: Unexpected token 'this'. | |
| 792 PASS "use strict";({ "this": 42 }.this === 42) is true | |
| 793 PASS (function(){"use strict";({ "this": 42 }.this === 42)}); true is true | |
| 794 PASS "use strict";({ this: 42 }.this === 42) is true | |
| 795 PASS (function(){"use strict";({ this: 42 }.this === 42)}); true is true | |
| 796 PASS "use strict";({ get this(){}, set this(){}, parsedOkay: 42 }.parsedOkay ===
42) is true | |
| 797 PASS (function(){"use strict";({ get this(){}, set this(){}, parsedOkay: 42 }.pa
rsedOkay === 42)}); true is true | |
| 798 PASS var throw; true threw exception SyntaxError: Expected an identifier but fou
nd 'throw' instead. | |
| 799 PASS (function(){var throw; true}); true threw exception SyntaxError: Expected a
n identifier but found 'throw' instead. | |
| 800 PASS var throw = 42; throw === 42 threw exception SyntaxError: Expected an ident
ifier but found 'throw' instead. | |
| 801 PASS (function(){var throw = 42; throw === 42}); true threw exception SyntaxErro
r: Expected an identifier but found 'throw' instead. | |
| 802 PASS function g(throw){ }; true threw exception SyntaxError: Expected an identi
fier but found 'throw' instead. | |
| 803 PASS (function(){function g(throw){ }; true}); true threw exception SyntaxError
: Expected an identifier but found 'throw' instead. | |
| 804 PASS /throw/.test(function g(throw){ }) threw exception SyntaxError: Expected a
n identifier but found 'throw' instead. | |
| 805 PASS (function(){/throw/.test(function g(throw){ })}); true threw exception Syn
taxError: Expected an identifier but found 'throw' instead. | |
| 806 PASS try{}catch(throw){}; true threw exception SyntaxError: Expected an identifi
er but found 'throw' instead. | |
| 807 PASS (function(){try{}catch(throw){}; true}); true threw exception SyntaxError:
Expected an identifier but found 'throw' instead. | |
| 808 PASS function throw(){ }; true threw exception SyntaxError: Unexpected token 't
hrow'. | |
| 809 PASS (function(){function throw(){ }; true}); true threw exception SyntaxError:
Unexpected token 'throw'. | |
| 810 PASS ({ "throw": 42 }.throw === 42) is true | |
| 811 PASS (function(){({ "throw": 42 }.throw === 42)}); true is true | |
| 812 PASS ({ throw: 42 }.throw === 42) is true | |
| 813 PASS (function(){({ throw: 42 }.throw === 42)}); true is true | |
| 814 PASS ({ get throw(){}, set throw(){}, parsedOkay: 42 }.parsedOkay === 42) is tru
e | |
| 815 PASS (function(){({ get throw(){}, set throw(){}, parsedOkay: 42 }.parsedOkay ==
= 42)}); true is true | |
| 816 PASS "use strict";var throw; true threw exception SyntaxError: Expected an ident
ifier but found 'throw' instead. | |
| 817 PASS (function(){"use strict";var throw; true}); true threw exception SyntaxErro
r: Expected an identifier but found 'throw' instead. | |
| 818 PASS "use strict";var throw = 42; throw === 42 threw exception SyntaxError: Expe
cted an identifier but found 'throw' instead. | |
| 819 PASS (function(){"use strict";var throw = 42; throw === 42}); true threw excepti
on SyntaxError: Expected an identifier but found 'throw' instead. | |
| 820 PASS "use strict";function g(throw){ "use strict"; }; true threw exception Synta
xError: Expected an identifier but found 'throw' instead. | |
| 821 PASS (function(){"use strict";function g(throw){ "use strict"; }; true}); true t
hrew exception SyntaxError: Expected an identifier but found 'throw' instead. | |
| 822 PASS "use strict";/throw/.test(function g(throw){ "use strict"; }) threw excepti
on SyntaxError: Expected an identifier but found 'throw' instead. | |
| 823 PASS (function(){"use strict";/throw/.test(function g(throw){ "use strict"; })})
; true threw exception SyntaxError: Expected an identifier but found 'throw' ins
tead. | |
| 824 PASS "use strict";try{}catch(throw){}; true threw exception SyntaxError: Expecte
d an identifier but found 'throw' instead. | |
| 825 PASS (function(){"use strict";try{}catch(throw){}; true}); true threw exception
SyntaxError: Expected an identifier but found 'throw' instead. | |
| 826 PASS "use strict";function throw(){ "use strict"; }; true threw exception Syntax
Error: Unexpected token 'throw'. | |
| 827 PASS (function(){"use strict";function throw(){ "use strict"; }; true}); true th
rew exception SyntaxError: Unexpected token 'throw'. | |
| 828 PASS "use strict";({ "throw": 42 }.throw === 42) is true | |
| 829 PASS (function(){"use strict";({ "throw": 42 }.throw === 42)}); true is true | |
| 830 PASS "use strict";({ throw: 42 }.throw === 42) is true | |
| 831 PASS (function(){"use strict";({ throw: 42 }.throw === 42)}); true is true | |
| 832 PASS "use strict";({ get throw(){}, set throw(){}, parsedOkay: 42 }.parsedOkay =
== 42) is true | |
| 833 PASS (function(){"use strict";({ get throw(){}, set throw(){}, parsedOkay: 42 }.
parsedOkay === 42)}); true is true | |
| 834 PASS var try; true threw exception SyntaxError: Expected an identifier but found
'try' instead. | |
| 835 PASS (function(){var try; true}); true threw exception SyntaxError: Expected an
identifier but found 'try' instead. | |
| 836 PASS var try = 42; try === 42 threw exception SyntaxError: Expected an identifie
r but found 'try' instead. | |
| 837 PASS (function(){var try = 42; try === 42}); true threw exception SyntaxError: E
xpected an identifier but found 'try' instead. | |
| 838 PASS function g(try){ }; true threw exception SyntaxError: Expected an identifi
er but found 'try' instead. | |
| 839 PASS (function(){function g(try){ }; true}); true threw exception SyntaxError:
Expected an identifier but found 'try' instead. | |
| 840 PASS /try/.test(function g(try){ }) threw exception SyntaxError: Expected an id
entifier but found 'try' instead. | |
| 841 PASS (function(){/try/.test(function g(try){ })}); true threw exception SyntaxE
rror: Expected an identifier but found 'try' instead. | |
| 842 PASS try{}catch(try){}; true threw exception SyntaxError: Expected an identifier
but found 'try' instead. | |
| 843 PASS (function(){try{}catch(try){}; true}); true threw exception SyntaxError: Ex
pected an identifier but found 'try' instead. | |
| 844 PASS function try(){ }; true threw exception SyntaxError: Unexpected token 'try
'. | |
| 845 PASS (function(){function try(){ }; true}); true threw exception SyntaxError: U
nexpected token 'try'. | |
| 846 PASS ({ "try": 42 }.try === 42) is true | |
| 847 PASS (function(){({ "try": 42 }.try === 42)}); true is true | |
| 848 PASS ({ try: 42 }.try === 42) is true | |
| 849 PASS (function(){({ try: 42 }.try === 42)}); true is true | |
| 850 PASS ({ get try(){}, set try(){}, parsedOkay: 42 }.parsedOkay === 42) is true | |
| 851 PASS (function(){({ get try(){}, set try(){}, parsedOkay: 42 }.parsedOkay === 42
)}); true is true | |
| 852 PASS "use strict";var try; true threw exception SyntaxError: Expected an identif
ier but found 'try' instead. | |
| 853 PASS (function(){"use strict";var try; true}); true threw exception SyntaxError:
Expected an identifier but found 'try' instead. | |
| 854 PASS "use strict";var try = 42; try === 42 threw exception SyntaxError: Expected
an identifier but found 'try' instead. | |
| 855 PASS (function(){"use strict";var try = 42; try === 42}); true threw exception S
yntaxError: Expected an identifier but found 'try' instead. | |
| 856 PASS "use strict";function g(try){ "use strict"; }; true threw exception SyntaxE
rror: Expected an identifier but found 'try' instead. | |
| 857 PASS (function(){"use strict";function g(try){ "use strict"; }; true}); true thr
ew exception SyntaxError: Expected an identifier but found 'try' instead. | |
| 858 PASS "use strict";/try/.test(function g(try){ "use strict"; }) threw exception S
yntaxError: Expected an identifier but found 'try' instead. | |
| 859 PASS (function(){"use strict";/try/.test(function g(try){ "use strict"; })}); tr
ue threw exception SyntaxError: Expected an identifier but found 'try' instead. | |
| 860 PASS "use strict";try{}catch(try){}; true threw exception SyntaxError: Expected
an identifier but found 'try' instead. | |
| 861 PASS (function(){"use strict";try{}catch(try){}; true}); true threw exception Sy
ntaxError: Expected an identifier but found 'try' instead. | |
| 862 PASS "use strict";function try(){ "use strict"; }; true threw exception SyntaxEr
ror: Unexpected token 'try'. | |
| 863 PASS (function(){"use strict";function try(){ "use strict"; }; true}); true thre
w exception SyntaxError: Unexpected token 'try'. | |
| 864 PASS "use strict";({ "try": 42 }.try === 42) is true | |
| 865 PASS (function(){"use strict";({ "try": 42 }.try === 42)}); true is true | |
| 866 PASS "use strict";({ try: 42 }.try === 42) is true | |
| 867 PASS (function(){"use strict";({ try: 42 }.try === 42)}); true is true | |
| 868 PASS "use strict";({ get try(){}, set try(){}, parsedOkay: 42 }.parsedOkay === 4
2) is true | |
| 869 PASS (function(){"use strict";({ get try(){}, set try(){}, parsedOkay: 42 }.pars
edOkay === 42)}); true is true | |
| 870 PASS var typeof; true threw exception SyntaxError: Expected an identifier but fo
und 'typeof' instead. | |
| 871 PASS (function(){var typeof; true}); true threw exception SyntaxError: Expected
an identifier but found 'typeof' instead. | |
| 872 PASS var typeof = 42; typeof === 42 threw exception SyntaxError: Expected an ide
ntifier but found 'typeof' instead. | |
| 873 PASS (function(){var typeof = 42; typeof === 42}); true threw exception SyntaxEr
ror: Expected an identifier but found 'typeof' instead. | |
| 874 PASS function g(typeof){ }; true threw exception SyntaxError: Expected an ident
ifier but found 'typeof' instead. | |
| 875 PASS (function(){function g(typeof){ }; true}); true threw exception SyntaxErro
r: Expected an identifier but found 'typeof' instead. | |
| 876 PASS /typeof/.test(function g(typeof){ }) threw exception SyntaxError: Expected
an identifier but found 'typeof' instead. | |
| 877 PASS (function(){/typeof/.test(function g(typeof){ })}); true threw exception S
yntaxError: Expected an identifier but found 'typeof' instead. | |
| 878 PASS try{}catch(typeof){}; true threw exception SyntaxError: Expected an identif
ier but found 'typeof' instead. | |
| 879 PASS (function(){try{}catch(typeof){}; true}); true threw exception SyntaxError:
Expected an identifier but found 'typeof' instead. | |
| 880 PASS function typeof(){ }; true threw exception SyntaxError: Unexpected token '
typeof'. | |
| 881 PASS (function(){function typeof(){ }; true}); true threw exception SyntaxError
: Unexpected token 'typeof'. | |
| 882 PASS ({ "typeof": 42 }.typeof === 42) is true | |
| 883 PASS (function(){({ "typeof": 42 }.typeof === 42)}); true is true | |
| 884 PASS ({ typeof: 42 }.typeof === 42) is true | |
| 885 PASS (function(){({ typeof: 42 }.typeof === 42)}); true is true | |
| 886 PASS ({ get typeof(){}, set typeof(){}, parsedOkay: 42 }.parsedOkay === 42) is t
rue | |
| 887 PASS (function(){({ get typeof(){}, set typeof(){}, parsedOkay: 42 }.parsedOkay
=== 42)}); true is true | |
| 888 PASS "use strict";var typeof; true threw exception SyntaxError: Expected an iden
tifier but found 'typeof' instead. | |
| 889 PASS (function(){"use strict";var typeof; true}); true threw exception SyntaxErr
or: Expected an identifier but found 'typeof' instead. | |
| 890 PASS "use strict";var typeof = 42; typeof === 42 threw exception SyntaxError: Ex
pected an identifier but found 'typeof' instead. | |
| 891 PASS (function(){"use strict";var typeof = 42; typeof === 42}); true threw excep
tion SyntaxError: Expected an identifier but found 'typeof' instead. | |
| 892 PASS "use strict";function g(typeof){ "use strict"; }; true threw exception Synt
axError: Expected an identifier but found 'typeof' instead. | |
| 893 PASS (function(){"use strict";function g(typeof){ "use strict"; }; true}); true
threw exception SyntaxError: Expected an identifier but found 'typeof' instead. | |
| 894 PASS "use strict";/typeof/.test(function g(typeof){ "use strict"; }) threw excep
tion SyntaxError: Expected an identifier but found 'typeof' instead. | |
| 895 PASS (function(){"use strict";/typeof/.test(function g(typeof){ "use strict"; })
}); true threw exception SyntaxError: Expected an identifier but found 'typeof'
instead. | |
| 896 PASS "use strict";try{}catch(typeof){}; true threw exception SyntaxError: Expect
ed an identifier but found 'typeof' instead. | |
| 897 PASS (function(){"use strict";try{}catch(typeof){}; true}); true threw exception
SyntaxError: Expected an identifier but found 'typeof' instead. | |
| 898 PASS "use strict";function typeof(){ "use strict"; }; true threw exception Synta
xError: Unexpected token 'typeof'. | |
| 899 PASS (function(){"use strict";function typeof(){ "use strict"; }; true}); true t
hrew exception SyntaxError: Unexpected token 'typeof'. | |
| 900 PASS "use strict";({ "typeof": 42 }.typeof === 42) is true | |
| 901 PASS (function(){"use strict";({ "typeof": 42 }.typeof === 42)}); true is true | |
| 902 PASS "use strict";({ typeof: 42 }.typeof === 42) is true | |
| 903 PASS (function(){"use strict";({ typeof: 42 }.typeof === 42)}); true is true | |
| 904 PASS "use strict";({ get typeof(){}, set typeof(){}, parsedOkay: 42 }.parsedOkay
=== 42) is true | |
| 905 PASS (function(){"use strict";({ get typeof(){}, set typeof(){}, parsedOkay: 42
}.parsedOkay === 42)}); true is true | |
| 906 PASS var var; true threw exception SyntaxError: Expected an identifier but found
'var' instead. | |
| 907 PASS (function(){var var; true}); true threw exception SyntaxError: Expected an
identifier but found 'var' instead. | |
| 908 PASS var var = 42; var === 42 threw exception SyntaxError: Expected an identifie
r but found 'var' instead. | |
| 909 PASS (function(){var var = 42; var === 42}); true threw exception SyntaxError: E
xpected an identifier but found 'var' instead. | |
| 910 PASS function g(var){ }; true threw exception SyntaxError: Expected an identifi
er but found 'var' instead. | |
| 911 PASS (function(){function g(var){ }; true}); true threw exception SyntaxError:
Expected an identifier but found 'var' instead. | |
| 912 PASS /var/.test(function g(var){ }) threw exception SyntaxError: Expected an id
entifier but found 'var' instead. | |
| 913 PASS (function(){/var/.test(function g(var){ })}); true threw exception SyntaxE
rror: Expected an identifier but found 'var' instead. | |
| 914 PASS try{}catch(var){}; true threw exception SyntaxError: Expected an identifier
but found 'var' instead. | |
| 915 PASS (function(){try{}catch(var){}; true}); true threw exception SyntaxError: Ex
pected an identifier but found 'var' instead. | |
| 916 PASS function var(){ }; true threw exception SyntaxError: Unexpected token 'var
'. | |
| 917 PASS (function(){function var(){ }; true}); true threw exception SyntaxError: U
nexpected token 'var'. | |
| 918 PASS ({ "var": 42 }.var === 42) is true | |
| 919 PASS (function(){({ "var": 42 }.var === 42)}); true is true | |
| 920 PASS ({ var: 42 }.var === 42) is true | |
| 921 PASS (function(){({ var: 42 }.var === 42)}); true is true | |
| 922 PASS ({ get var(){}, set var(){}, parsedOkay: 42 }.parsedOkay === 42) is true | |
| 923 PASS (function(){({ get var(){}, set var(){}, parsedOkay: 42 }.parsedOkay === 42
)}); true is true | |
| 924 PASS "use strict";var var; true threw exception SyntaxError: Expected an identif
ier but found 'var' instead. | |
| 925 PASS (function(){"use strict";var var; true}); true threw exception SyntaxError:
Expected an identifier but found 'var' instead. | |
| 926 PASS "use strict";var var = 42; var === 42 threw exception SyntaxError: Expected
an identifier but found 'var' instead. | |
| 927 PASS (function(){"use strict";var var = 42; var === 42}); true threw exception S
yntaxError: Expected an identifier but found 'var' instead. | |
| 928 PASS "use strict";function g(var){ "use strict"; }; true threw exception SyntaxE
rror: Expected an identifier but found 'var' instead. | |
| 929 PASS (function(){"use strict";function g(var){ "use strict"; }; true}); true thr
ew exception SyntaxError: Expected an identifier but found 'var' instead. | |
| 930 PASS "use strict";/var/.test(function g(var){ "use strict"; }) threw exception S
yntaxError: Expected an identifier but found 'var' instead. | |
| 931 PASS (function(){"use strict";/var/.test(function g(var){ "use strict"; })}); tr
ue threw exception SyntaxError: Expected an identifier but found 'var' instead. | |
| 932 PASS "use strict";try{}catch(var){}; true threw exception SyntaxError: Expected
an identifier but found 'var' instead. | |
| 933 PASS (function(){"use strict";try{}catch(var){}; true}); true threw exception Sy
ntaxError: Expected an identifier but found 'var' instead. | |
| 934 PASS "use strict";function var(){ "use strict"; }; true threw exception SyntaxEr
ror: Unexpected token 'var'. | |
| 935 PASS (function(){"use strict";function var(){ "use strict"; }; true}); true thre
w exception SyntaxError: Unexpected token 'var'. | |
| 936 PASS "use strict";({ "var": 42 }.var === 42) is true | |
| 937 PASS (function(){"use strict";({ "var": 42 }.var === 42)}); true is true | |
| 938 PASS "use strict";({ var: 42 }.var === 42) is true | |
| 939 PASS (function(){"use strict";({ var: 42 }.var === 42)}); true is true | |
| 940 PASS "use strict";({ get var(){}, set var(){}, parsedOkay: 42 }.parsedOkay === 4
2) is true | |
| 941 PASS (function(){"use strict";({ get var(){}, set var(){}, parsedOkay: 42 }.pars
edOkay === 42)}); true is true | |
| 942 PASS var void; true threw exception SyntaxError: Expected an identifier but foun
d 'void' instead. | |
| 943 PASS (function(){var void; true}); true threw exception SyntaxError: Expected an
identifier but found 'void' instead. | |
| 944 PASS var void = 42; void === 42 threw exception SyntaxError: Expected an identif
ier but found 'void' instead. | |
| 945 PASS (function(){var void = 42; void === 42}); true threw exception SyntaxError:
Expected an identifier but found 'void' instead. | |
| 946 PASS function g(void){ }; true threw exception SyntaxError: Expected an identif
ier but found 'void' instead. | |
| 947 PASS (function(){function g(void){ }; true}); true threw exception SyntaxError:
Expected an identifier but found 'void' instead. | |
| 948 PASS /void/.test(function g(void){ }) threw exception SyntaxError: Expected an
identifier but found 'void' instead. | |
| 949 PASS (function(){/void/.test(function g(void){ })}); true threw exception Synta
xError: Expected an identifier but found 'void' instead. | |
| 950 PASS try{}catch(void){}; true threw exception SyntaxError: Expected an identifie
r but found 'void' instead. | |
| 951 PASS (function(){try{}catch(void){}; true}); true threw exception SyntaxError: E
xpected an identifier but found 'void' instead. | |
| 952 PASS function void(){ }; true threw exception SyntaxError: Unexpected token 'vo
id'. | |
| 953 PASS (function(){function void(){ }; true}); true threw exception SyntaxError:
Unexpected token 'void'. | |
| 954 PASS ({ "void": 42 }.void === 42) is true | |
| 955 PASS (function(){({ "void": 42 }.void === 42)}); true is true | |
| 956 PASS ({ void: 42 }.void === 42) is true | |
| 957 PASS (function(){({ void: 42 }.void === 42)}); true is true | |
| 958 PASS ({ get void(){}, set void(){}, parsedOkay: 42 }.parsedOkay === 42) is true | |
| 959 PASS (function(){({ get void(){}, set void(){}, parsedOkay: 42 }.parsedOkay ===
42)}); true is true | |
| 960 PASS "use strict";var void; true threw exception SyntaxError: Expected an identi
fier but found 'void' instead. | |
| 961 PASS (function(){"use strict";var void; true}); true threw exception SyntaxError
: Expected an identifier but found 'void' instead. | |
| 962 PASS "use strict";var void = 42; void === 42 threw exception SyntaxError: Expect
ed an identifier but found 'void' instead. | |
| 963 PASS (function(){"use strict";var void = 42; void === 42}); true threw exception
SyntaxError: Expected an identifier but found 'void' instead. | |
| 964 PASS "use strict";function g(void){ "use strict"; }; true threw exception Syntax
Error: Expected an identifier but found 'void' instead. | |
| 965 PASS (function(){"use strict";function g(void){ "use strict"; }; true}); true th
rew exception SyntaxError: Expected an identifier but found 'void' instead. | |
| 966 PASS "use strict";/void/.test(function g(void){ "use strict"; }) threw exception
SyntaxError: Expected an identifier but found 'void' instead. | |
| 967 PASS (function(){"use strict";/void/.test(function g(void){ "use strict"; })});
true threw exception SyntaxError: Expected an identifier but found 'void' instea
d. | |
| 968 PASS "use strict";try{}catch(void){}; true threw exception SyntaxError: Expected
an identifier but found 'void' instead. | |
| 969 PASS (function(){"use strict";try{}catch(void){}; true}); true threw exception S
yntaxError: Expected an identifier but found 'void' instead. | |
| 970 PASS "use strict";function void(){ "use strict"; }; true threw exception SyntaxE
rror: Unexpected token 'void'. | |
| 971 PASS (function(){"use strict";function void(){ "use strict"; }; true}); true thr
ew exception SyntaxError: Unexpected token 'void'. | |
| 972 PASS "use strict";({ "void": 42 }.void === 42) is true | |
| 973 PASS (function(){"use strict";({ "void": 42 }.void === 42)}); true is true | |
| 974 PASS "use strict";({ void: 42 }.void === 42) is true | |
| 975 PASS (function(){"use strict";({ void: 42 }.void === 42)}); true is true | |
| 976 PASS "use strict";({ get void(){}, set void(){}, parsedOkay: 42 }.parsedOkay ===
42) is true | |
| 977 PASS (function(){"use strict";({ get void(){}, set void(){}, parsedOkay: 42 }.pa
rsedOkay === 42)}); true is true | |
| 978 PASS var while; true threw exception SyntaxError: Expected an identifier but fou
nd 'while' instead. | |
| 979 PASS (function(){var while; true}); true threw exception SyntaxError: Expected a
n identifier but found 'while' instead. | |
| 980 PASS var while = 42; while === 42 threw exception SyntaxError: Expected an ident
ifier but found 'while' instead. | |
| 981 PASS (function(){var while = 42; while === 42}); true threw exception SyntaxErro
r: Expected an identifier but found 'while' instead. | |
| 982 PASS function g(while){ }; true threw exception SyntaxError: Expected an identi
fier but found 'while' instead. | |
| 983 PASS (function(){function g(while){ }; true}); true threw exception SyntaxError
: Expected an identifier but found 'while' instead. | |
| 984 PASS /while/.test(function g(while){ }) threw exception SyntaxError: Expected a
n identifier but found 'while' instead. | |
| 985 PASS (function(){/while/.test(function g(while){ })}); true threw exception Syn
taxError: Expected an identifier but found 'while' instead. | |
| 986 PASS try{}catch(while){}; true threw exception SyntaxError: Expected an identifi
er but found 'while' instead. | |
| 987 PASS (function(){try{}catch(while){}; true}); true threw exception SyntaxError:
Expected an identifier but found 'while' instead. | |
| 988 PASS function while(){ }; true threw exception SyntaxError: Unexpected token 'w
hile'. | |
| 989 PASS (function(){function while(){ }; true}); true threw exception SyntaxError:
Unexpected token 'while'. | |
| 990 PASS ({ "while": 42 }.while === 42) is true | |
| 991 PASS (function(){({ "while": 42 }.while === 42)}); true is true | |
| 992 PASS ({ while: 42 }.while === 42) is true | |
| 993 PASS (function(){({ while: 42 }.while === 42)}); true is true | |
| 994 PASS ({ get while(){}, set while(){}, parsedOkay: 42 }.parsedOkay === 42) is tru
e | |
| 995 PASS (function(){({ get while(){}, set while(){}, parsedOkay: 42 }.parsedOkay ==
= 42)}); true is true | |
| 996 PASS "use strict";var while; true threw exception SyntaxError: Expected an ident
ifier but found 'while' instead. | |
| 997 PASS (function(){"use strict";var while; true}); true threw exception SyntaxErro
r: Expected an identifier but found 'while' instead. | |
| 998 PASS "use strict";var while = 42; while === 42 threw exception SyntaxError: Expe
cted an identifier but found 'while' instead. | |
| 999 PASS (function(){"use strict";var while = 42; while === 42}); true threw excepti
on SyntaxError: Expected an identifier but found 'while' instead. | |
| 1000 PASS "use strict";function g(while){ "use strict"; }; true threw exception Synta
xError: Expected an identifier but found 'while' instead. | |
| 1001 PASS (function(){"use strict";function g(while){ "use strict"; }; true}); true t
hrew exception SyntaxError: Expected an identifier but found 'while' instead. | |
| 1002 PASS "use strict";/while/.test(function g(while){ "use strict"; }) threw excepti
on SyntaxError: Expected an identifier but found 'while' instead. | |
| 1003 PASS (function(){"use strict";/while/.test(function g(while){ "use strict"; })})
; true threw exception SyntaxError: Expected an identifier but found 'while' ins
tead. | |
| 1004 PASS "use strict";try{}catch(while){}; true threw exception SyntaxError: Expecte
d an identifier but found 'while' instead. | |
| 1005 PASS (function(){"use strict";try{}catch(while){}; true}); true threw exception
SyntaxError: Expected an identifier but found 'while' instead. | |
| 1006 PASS "use strict";function while(){ "use strict"; }; true threw exception Syntax
Error: Unexpected token 'while'. | |
| 1007 PASS (function(){"use strict";function while(){ "use strict"; }; true}); true th
rew exception SyntaxError: Unexpected token 'while'. | |
| 1008 PASS "use strict";({ "while": 42 }.while === 42) is true | |
| 1009 PASS (function(){"use strict";({ "while": 42 }.while === 42)}); true is true | |
| 1010 PASS "use strict";({ while: 42 }.while === 42) is true | |
| 1011 PASS (function(){"use strict";({ while: 42 }.while === 42)}); true is true | |
| 1012 PASS "use strict";({ get while(){}, set while(){}, parsedOkay: 42 }.parsedOkay =
== 42) is true | |
| 1013 PASS (function(){"use strict";({ get while(){}, set while(){}, parsedOkay: 42 }.
parsedOkay === 42)}); true is true | |
| 1014 PASS var with; true threw exception SyntaxError: Expected an identifier but foun
d 'with' instead. | |
| 1015 PASS (function(){var with; true}); true threw exception SyntaxError: Expected an
identifier but found 'with' instead. | |
| 1016 PASS var with = 42; with === 42 threw exception SyntaxError: Expected an identif
ier but found 'with' instead. | |
| 1017 PASS (function(){var with = 42; with === 42}); true threw exception SyntaxError:
Expected an identifier but found 'with' instead. | |
| 1018 PASS function g(with){ }; true threw exception SyntaxError: Expected an identif
ier but found 'with' instead. | |
| 1019 PASS (function(){function g(with){ }; true}); true threw exception SyntaxError:
Expected an identifier but found 'with' instead. | |
| 1020 PASS /with/.test(function g(with){ }) threw exception SyntaxError: Expected an
identifier but found 'with' instead. | |
| 1021 PASS (function(){/with/.test(function g(with){ })}); true threw exception Synta
xError: Expected an identifier but found 'with' instead. | |
| 1022 PASS try{}catch(with){}; true threw exception SyntaxError: Expected an identifie
r but found 'with' instead. | |
| 1023 PASS (function(){try{}catch(with){}; true}); true threw exception SyntaxError: E
xpected an identifier but found 'with' instead. | |
| 1024 PASS function with(){ }; true threw exception SyntaxError: Unexpected token 'wi
th'. | |
| 1025 PASS (function(){function with(){ }; true}); true threw exception SyntaxError:
Unexpected token 'with'. | |
| 1026 PASS ({ "with": 42 }.with === 42) is true | |
| 1027 PASS (function(){({ "with": 42 }.with === 42)}); true is true | |
| 1028 PASS ({ with: 42 }.with === 42) is true | |
| 1029 PASS (function(){({ with: 42 }.with === 42)}); true is true | |
| 1030 PASS ({ get with(){}, set with(){}, parsedOkay: 42 }.parsedOkay === 42) is true | |
| 1031 PASS (function(){({ get with(){}, set with(){}, parsedOkay: 42 }.parsedOkay ===
42)}); true is true | |
| 1032 PASS "use strict";var with; true threw exception SyntaxError: Expected an identi
fier but found 'with' instead. | |
| 1033 PASS (function(){"use strict";var with; true}); true threw exception SyntaxError
: Expected an identifier but found 'with' instead. | |
| 1034 PASS "use strict";var with = 42; with === 42 threw exception SyntaxError: Expect
ed an identifier but found 'with' instead. | |
| 1035 PASS (function(){"use strict";var with = 42; with === 42}); true threw exception
SyntaxError: Expected an identifier but found 'with' instead. | |
| 1036 PASS "use strict";function g(with){ "use strict"; }; true threw exception Syntax
Error: Expected an identifier but found 'with' instead. | |
| 1037 PASS (function(){"use strict";function g(with){ "use strict"; }; true}); true th
rew exception SyntaxError: Expected an identifier but found 'with' instead. | |
| 1038 PASS "use strict";/with/.test(function g(with){ "use strict"; }) threw exception
SyntaxError: Expected an identifier but found 'with' instead. | |
| 1039 PASS (function(){"use strict";/with/.test(function g(with){ "use strict"; })});
true threw exception SyntaxError: Expected an identifier but found 'with' instea
d. | |
| 1040 PASS "use strict";try{}catch(with){}; true threw exception SyntaxError: Expected
an identifier but found 'with' instead. | |
| 1041 PASS (function(){"use strict";try{}catch(with){}; true}); true threw exception S
yntaxError: Expected an identifier but found 'with' instead. | |
| 1042 PASS "use strict";function with(){ "use strict"; }; true threw exception SyntaxE
rror: Unexpected token 'with'. | |
| 1043 PASS (function(){"use strict";function with(){ "use strict"; }; true}); true thr
ew exception SyntaxError: Unexpected token 'with'. | |
| 1044 PASS "use strict";({ "with": 42 }.with === 42) is true | |
| 1045 PASS (function(){"use strict";({ "with": 42 }.with === 42)}); true is true | |
| 1046 PASS "use strict";({ with: 42 }.with === 42) is true | |
| 1047 PASS (function(){"use strict";({ with: 42 }.with === 42)}); true is true | |
| 1048 PASS "use strict";({ get with(){}, set with(){}, parsedOkay: 42 }.parsedOkay ===
42) is true | |
| 1049 PASS (function(){"use strict";({ get with(){}, set with(){}, parsedOkay: 42 }.pa
rsedOkay === 42)}); true is true | |
| 1050 PASS var class; true threw exception SyntaxError: Use of reserved word 'class'. | |
| 1051 PASS (function(){var class; true}); true threw exception SyntaxError: Use of res
erved word 'class'. | |
| 1052 PASS var class = 42; class === 42 threw exception SyntaxError: Use of reserved w
ord 'class'. | |
| 1053 PASS (function(){var class = 42; class === 42}); true threw exception SyntaxErro
r: Use of reserved word 'class'. | |
| 1054 PASS function g(class){ }; true threw exception SyntaxError: Use of reserved wo
rd 'class'. | |
| 1055 PASS (function(){function g(class){ }; true}); true threw exception SyntaxError
: Use of reserved word 'class'. | |
| 1056 PASS /class/.test(function g(class){ }) threw exception SyntaxError: Use of res
erved word 'class'. | |
| 1057 PASS (function(){/class/.test(function g(class){ })}); true threw exception Syn
taxError: Use of reserved word 'class'. | |
| 1058 PASS try{}catch(class){}; true threw exception SyntaxError: Use of reserved word
'class'. | |
| 1059 PASS (function(){try{}catch(class){}; true}); true threw exception SyntaxError:
Use of reserved word 'class'. | |
| 1060 PASS function class(){ }; true threw exception SyntaxError: Use of reserved wor
d 'class'. | |
| 1061 PASS (function(){function class(){ }; true}); true threw exception SyntaxError:
Use of reserved word 'class'. | |
| 1062 PASS ({ "class": 42 }.class === 42) is true | |
| 1063 PASS (function(){({ "class": 42 }.class === 42)}); true is true | |
| 1064 PASS ({ class: 42 }.class === 42) is true | |
| 1065 PASS (function(){({ class: 42 }.class === 42)}); true is true | |
| 1066 PASS ({ get class(){}, set class(){}, parsedOkay: 42 }.parsedOkay === 42) is tru
e | |
| 1067 PASS (function(){({ get class(){}, set class(){}, parsedOkay: 42 }.parsedOkay ==
= 42)}); true is true | |
| 1068 PASS "use strict";var class; true threw exception SyntaxError: Use of reserved w
ord 'class'. | |
| 1069 PASS (function(){"use strict";var class; true}); true threw exception SyntaxErro
r: Use of reserved word 'class'. | |
| 1070 PASS "use strict";var class = 42; class === 42 threw exception SyntaxError: Use
of reserved word 'class'. | |
| 1071 PASS (function(){"use strict";var class = 42; class === 42}); true threw excepti
on SyntaxError: Use of reserved word 'class'. | |
| 1072 PASS "use strict";function g(class){ "use strict"; }; true threw exception Synta
xError: Use of reserved word 'class'. | |
| 1073 PASS (function(){"use strict";function g(class){ "use strict"; }; true}); true t
hrew exception SyntaxError: Use of reserved word 'class'. | |
| 1074 PASS "use strict";/class/.test(function g(class){ "use strict"; }) threw excepti
on SyntaxError: Use of reserved word 'class'. | |
| 1075 PASS (function(){"use strict";/class/.test(function g(class){ "use strict"; })})
; true threw exception SyntaxError: Use of reserved word 'class'. | |
| 1076 PASS "use strict";try{}catch(class){}; true threw exception SyntaxError: Use of
reserved word 'class'. | |
| 1077 PASS (function(){"use strict";try{}catch(class){}; true}); true threw exception
SyntaxError: Use of reserved word 'class'. | |
| 1078 PASS "use strict";function class(){ "use strict"; }; true threw exception Syntax
Error: Use of reserved word 'class'. | |
| 1079 PASS (function(){"use strict";function class(){ "use strict"; }; true}); true th
rew exception SyntaxError: Use of reserved word 'class'. | |
| 1080 PASS "use strict";({ "class": 42 }.class === 42) is true | |
| 1081 PASS (function(){"use strict";({ "class": 42 }.class === 42)}); true is true | |
| 1082 PASS "use strict";({ class: 42 }.class === 42) is true | |
| 1083 PASS (function(){"use strict";({ class: 42 }.class === 42)}); true is true | |
| 1084 PASS "use strict";({ get class(){}, set class(){}, parsedOkay: 42 }.parsedOkay =
== 42) is true | |
| 1085 PASS (function(){"use strict";({ get class(){}, set class(){}, parsedOkay: 42 }.
parsedOkay === 42)}); true is true | |
| 1086 PASS var const; true threw exception SyntaxError: Expected an identifier but fou
nd 'const' instead. | |
| 1087 PASS (function(){var const; true}); true threw exception SyntaxError: Expected a
n identifier but found 'const' instead. | |
| 1088 PASS var const = 42; const === 42 threw exception SyntaxError: Expected an ident
ifier but found 'const' instead. | |
| 1089 PASS (function(){var const = 42; const === 42}); true threw exception SyntaxErro
r: Expected an identifier but found 'const' instead. | |
| 1090 PASS function g(const){ }; true threw exception SyntaxError: Expected an identi
fier but found 'const' instead. | |
| 1091 PASS (function(){function g(const){ }; true}); true threw exception SyntaxError
: Expected an identifier but found 'const' instead. | |
| 1092 PASS /const/.test(function g(const){ }) threw exception SyntaxError: Expected a
n identifier but found 'const' instead. | |
| 1093 PASS (function(){/const/.test(function g(const){ })}); true threw exception Syn
taxError: Expected an identifier but found 'const' instead. | |
| 1094 PASS try{}catch(const){}; true threw exception SyntaxError: Expected an identifi
er but found 'const' instead. | |
| 1095 PASS (function(){try{}catch(const){}; true}); true threw exception SyntaxError:
Expected an identifier but found 'const' instead. | |
| 1096 PASS function const(){ }; true threw exception SyntaxError: Unexpected token 'c
onst'. | |
| 1097 PASS (function(){function const(){ }; true}); true threw exception SyntaxError:
Unexpected token 'const'. | |
| 1098 PASS ({ "const": 42 }.const === 42) is true | |
| 1099 PASS (function(){({ "const": 42 }.const === 42)}); true is true | |
| 1100 PASS ({ const: 42 }.const === 42) is true | |
| 1101 PASS (function(){({ const: 42 }.const === 42)}); true is true | |
| 1102 PASS ({ get const(){}, set const(){}, parsedOkay: 42 }.parsedOkay === 42) is tru
e | |
| 1103 PASS (function(){({ get const(){}, set const(){}, parsedOkay: 42 }.parsedOkay ==
= 42)}); true is true | |
| 1104 PASS "use strict";var const; true threw exception SyntaxError: Expected an ident
ifier but found 'const' instead. | |
| 1105 PASS (function(){"use strict";var const; true}); true threw exception SyntaxErro
r: Expected an identifier but found 'const' instead. | |
| 1106 PASS "use strict";var const = 42; const === 42 threw exception SyntaxError: Expe
cted an identifier but found 'const' instead. | |
| 1107 PASS (function(){"use strict";var const = 42; const === 42}); true threw excepti
on SyntaxError: Expected an identifier but found 'const' instead. | |
| 1108 PASS "use strict";function g(const){ "use strict"; }; true threw exception Synta
xError: Expected an identifier but found 'const' instead. | |
| 1109 PASS (function(){"use strict";function g(const){ "use strict"; }; true}); true t
hrew exception SyntaxError: Expected an identifier but found 'const' instead. | |
| 1110 PASS "use strict";/const/.test(function g(const){ "use strict"; }) threw excepti
on SyntaxError: Expected an identifier but found 'const' instead. | |
| 1111 PASS (function(){"use strict";/const/.test(function g(const){ "use strict"; })})
; true threw exception SyntaxError: Expected an identifier but found 'const' ins
tead. | |
| 1112 PASS "use strict";try{}catch(const){}; true threw exception SyntaxError: Expecte
d an identifier but found 'const' instead. | |
| 1113 PASS (function(){"use strict";try{}catch(const){}; true}); true threw exception
SyntaxError: Expected an identifier but found 'const' instead. | |
| 1114 PASS "use strict";function const(){ "use strict"; }; true threw exception Syntax
Error: Unexpected token 'const'. | |
| 1115 PASS (function(){"use strict";function const(){ "use strict"; }; true}); true th
rew exception SyntaxError: Unexpected token 'const'. | |
| 1116 PASS "use strict";({ "const": 42 }.const === 42) is true | |
| 1117 PASS (function(){"use strict";({ "const": 42 }.const === 42)}); true is true | |
| 1118 PASS "use strict";({ const: 42 }.const === 42) is true | |
| 1119 PASS (function(){"use strict";({ const: 42 }.const === 42)}); true is true | |
| 1120 PASS "use strict";({ get const(){}, set const(){}, parsedOkay: 42 }.parsedOkay =
== 42) is true | |
| 1121 PASS (function(){"use strict";({ get const(){}, set const(){}, parsedOkay: 42 }.
parsedOkay === 42)}); true is true | |
| 1122 PASS var enum; true threw exception SyntaxError: Use of reserved word 'enum'. | |
| 1123 PASS (function(){var enum; true}); true threw exception SyntaxError: Use of rese
rved word 'enum'. | |
| 1124 PASS var enum = 42; enum === 42 threw exception SyntaxError: Use of reserved wor
d 'enum'. | |
| 1125 PASS (function(){var enum = 42; enum === 42}); true threw exception SyntaxError:
Use of reserved word 'enum'. | |
| 1126 PASS function g(enum){ }; true threw exception SyntaxError: Use of reserved wor
d 'enum'. | |
| 1127 PASS (function(){function g(enum){ }; true}); true threw exception SyntaxError:
Use of reserved word 'enum'. | |
| 1128 PASS /enum/.test(function g(enum){ }) threw exception SyntaxError: Use of reser
ved word 'enum'. | |
| 1129 PASS (function(){/enum/.test(function g(enum){ })}); true threw exception Synta
xError: Use of reserved word 'enum'. | |
| 1130 PASS try{}catch(enum){}; true threw exception SyntaxError: Use of reserved word
'enum'. | |
| 1131 PASS (function(){try{}catch(enum){}; true}); true threw exception SyntaxError: U
se of reserved word 'enum'. | |
| 1132 PASS function enum(){ }; true threw exception SyntaxError: Use of reserved word
'enum'. | |
| 1133 PASS (function(){function enum(){ }; true}); true threw exception SyntaxError:
Use of reserved word 'enum'. | |
| 1134 PASS ({ "enum": 42 }.enum === 42) is true | |
| 1135 PASS (function(){({ "enum": 42 }.enum === 42)}); true is true | |
| 1136 PASS ({ enum: 42 }.enum === 42) is true | |
| 1137 PASS (function(){({ enum: 42 }.enum === 42)}); true is true | |
| 1138 PASS ({ get enum(){}, set enum(){}, parsedOkay: 42 }.parsedOkay === 42) is true | |
| 1139 PASS (function(){({ get enum(){}, set enum(){}, parsedOkay: 42 }.parsedOkay ===
42)}); true is true | |
| 1140 PASS "use strict";var enum; true threw exception SyntaxError: Use of reserved wo
rd 'enum'. | |
| 1141 PASS (function(){"use strict";var enum; true}); true threw exception SyntaxError
: Use of reserved word 'enum'. | |
| 1142 PASS "use strict";var enum = 42; enum === 42 threw exception SyntaxError: Use of
reserved word 'enum'. | |
| 1143 PASS (function(){"use strict";var enum = 42; enum === 42}); true threw exception
SyntaxError: Use of reserved word 'enum'. | |
| 1144 PASS "use strict";function g(enum){ "use strict"; }; true threw exception Syntax
Error: Use of reserved word 'enum'. | |
| 1145 PASS (function(){"use strict";function g(enum){ "use strict"; }; true}); true th
rew exception SyntaxError: Use of reserved word 'enum'. | |
| 1146 PASS "use strict";/enum/.test(function g(enum){ "use strict"; }) threw exception
SyntaxError: Use of reserved word 'enum'. | |
| 1147 PASS (function(){"use strict";/enum/.test(function g(enum){ "use strict"; })});
true threw exception SyntaxError: Use of reserved word 'enum'. | |
| 1148 PASS "use strict";try{}catch(enum){}; true threw exception SyntaxError: Use of r
eserved word 'enum'. | |
| 1149 PASS (function(){"use strict";try{}catch(enum){}; true}); true threw exception S
yntaxError: Use of reserved word 'enum'. | |
| 1150 PASS "use strict";function enum(){ "use strict"; }; true threw exception SyntaxE
rror: Use of reserved word 'enum'. | |
| 1151 PASS (function(){"use strict";function enum(){ "use strict"; }; true}); true thr
ew exception SyntaxError: Use of reserved word 'enum'. | |
| 1152 PASS "use strict";({ "enum": 42 }.enum === 42) is true | |
| 1153 PASS (function(){"use strict";({ "enum": 42 }.enum === 42)}); true is true | |
| 1154 PASS "use strict";({ enum: 42 }.enum === 42) is true | |
| 1155 PASS (function(){"use strict";({ enum: 42 }.enum === 42)}); true is true | |
| 1156 PASS "use strict";({ get enum(){}, set enum(){}, parsedOkay: 42 }.parsedOkay ===
42) is true | |
| 1157 PASS (function(){"use strict";({ get enum(){}, set enum(){}, parsedOkay: 42 }.pa
rsedOkay === 42)}); true is true | |
| 1158 PASS var export; true threw exception SyntaxError: Use of reserved word 'export'
. | |
| 1159 PASS (function(){var export; true}); true threw exception SyntaxError: Use of re
served word 'export'. | |
| 1160 PASS var export = 42; export === 42 threw exception SyntaxError: Use of reserved
word 'export'. | |
| 1161 PASS (function(){var export = 42; export === 42}); true threw exception SyntaxEr
ror: Use of reserved word 'export'. | |
| 1162 PASS function g(export){ }; true threw exception SyntaxError: Use of reserved w
ord 'export'. | |
| 1163 PASS (function(){function g(export){ }; true}); true threw exception SyntaxErro
r: Use of reserved word 'export'. | |
| 1164 PASS /export/.test(function g(export){ }) threw exception SyntaxError: Use of r
eserved word 'export'. | |
| 1165 PASS (function(){/export/.test(function g(export){ })}); true threw exception S
yntaxError: Use of reserved word 'export'. | |
| 1166 PASS try{}catch(export){}; true threw exception SyntaxError: Use of reserved wor
d 'export'. | |
| 1167 PASS (function(){try{}catch(export){}; true}); true threw exception SyntaxError:
Use of reserved word 'export'. | |
| 1168 PASS function export(){ }; true threw exception SyntaxError: Use of reserved wo
rd 'export'. | |
| 1169 PASS (function(){function export(){ }; true}); true threw exception SyntaxError
: Use of reserved word 'export'. | |
| 1170 PASS ({ "export": 42 }.export === 42) is true | |
| 1171 PASS (function(){({ "export": 42 }.export === 42)}); true is true | |
| 1172 PASS ({ export: 42 }.export === 42) is true | |
| 1173 PASS (function(){({ export: 42 }.export === 42)}); true is true | |
| 1174 PASS ({ get export(){}, set export(){}, parsedOkay: 42 }.parsedOkay === 42) is t
rue | |
| 1175 PASS (function(){({ get export(){}, set export(){}, parsedOkay: 42 }.parsedOkay
=== 42)}); true is true | |
| 1176 PASS "use strict";var export; true threw exception SyntaxError: Use of reserved
word 'export'. | |
| 1177 PASS (function(){"use strict";var export; true}); true threw exception SyntaxErr
or: Use of reserved word 'export'. | |
| 1178 PASS "use strict";var export = 42; export === 42 threw exception SyntaxError: Us
e of reserved word 'export'. | |
| 1179 PASS (function(){"use strict";var export = 42; export === 42}); true threw excep
tion SyntaxError: Use of reserved word 'export'. | |
| 1180 PASS "use strict";function g(export){ "use strict"; }; true threw exception Synt
axError: Use of reserved word 'export'. | |
| 1181 PASS (function(){"use strict";function g(export){ "use strict"; }; true}); true
threw exception SyntaxError: Use of reserved word 'export'. | |
| 1182 PASS "use strict";/export/.test(function g(export){ "use strict"; }) threw excep
tion SyntaxError: Use of reserved word 'export'. | |
| 1183 PASS (function(){"use strict";/export/.test(function g(export){ "use strict"; })
}); true threw exception SyntaxError: Use of reserved word 'export'. | |
| 1184 PASS "use strict";try{}catch(export){}; true threw exception SyntaxError: Use of
reserved word 'export'. | |
| 1185 PASS (function(){"use strict";try{}catch(export){}; true}); true threw exception
SyntaxError: Use of reserved word 'export'. | |
| 1186 PASS "use strict";function export(){ "use strict"; }; true threw exception Synta
xError: Use of reserved word 'export'. | |
| 1187 PASS (function(){"use strict";function export(){ "use strict"; }; true}); true t
hrew exception SyntaxError: Use of reserved word 'export'. | |
| 1188 PASS "use strict";({ "export": 42 }.export === 42) is true | |
| 1189 PASS (function(){"use strict";({ "export": 42 }.export === 42)}); true is true | |
| 1190 PASS "use strict";({ export: 42 }.export === 42) is true | |
| 1191 PASS (function(){"use strict";({ export: 42 }.export === 42)}); true is true | |
| 1192 PASS "use strict";({ get export(){}, set export(){}, parsedOkay: 42 }.parsedOkay
=== 42) is true | |
| 1193 PASS (function(){"use strict";({ get export(){}, set export(){}, parsedOkay: 42
}.parsedOkay === 42)}); true is true | |
| 1194 PASS var extends; true threw exception SyntaxError: Use of reserved word 'extend
s'. | |
| 1195 PASS (function(){var extends; true}); true threw exception SyntaxError: Use of r
eserved word 'extends'. | |
| 1196 PASS var extends = 42; extends === 42 threw exception SyntaxError: Use of reserv
ed word 'extends'. | |
| 1197 PASS (function(){var extends = 42; extends === 42}); true threw exception Syntax
Error: Use of reserved word 'extends'. | |
| 1198 PASS function g(extends){ }; true threw exception SyntaxError: Use of reserved
word 'extends'. | |
| 1199 PASS (function(){function g(extends){ }; true}); true threw exception SyntaxErr
or: Use of reserved word 'extends'. | |
| 1200 PASS /extends/.test(function g(extends){ }) threw exception SyntaxError: Use of
reserved word 'extends'. | |
| 1201 PASS (function(){/extends/.test(function g(extends){ })}); true threw exception
SyntaxError: Use of reserved word 'extends'. | |
| 1202 PASS try{}catch(extends){}; true threw exception SyntaxError: Use of reserved wo
rd 'extends'. | |
| 1203 PASS (function(){try{}catch(extends){}; true}); true threw exception SyntaxError
: Use of reserved word 'extends'. | |
| 1204 PASS function extends(){ }; true threw exception SyntaxError: Use of reserved w
ord 'extends'. | |
| 1205 PASS (function(){function extends(){ }; true}); true threw exception SyntaxErro
r: Use of reserved word 'extends'. | |
| 1206 PASS ({ "extends": 42 }.extends === 42) is true | |
| 1207 PASS (function(){({ "extends": 42 }.extends === 42)}); true is true | |
| 1208 PASS ({ extends: 42 }.extends === 42) is true | |
| 1209 PASS (function(){({ extends: 42 }.extends === 42)}); true is true | |
| 1210 PASS ({ get extends(){}, set extends(){}, parsedOkay: 42 }.parsedOkay === 42) is
true | |
| 1211 PASS (function(){({ get extends(){}, set extends(){}, parsedOkay: 42 }.parsedOka
y === 42)}); true is true | |
| 1212 PASS "use strict";var extends; true threw exception SyntaxError: Use of reserved
word 'extends'. | |
| 1213 PASS (function(){"use strict";var extends; true}); true threw exception SyntaxEr
ror: Use of reserved word 'extends'. | |
| 1214 PASS "use strict";var extends = 42; extends === 42 threw exception SyntaxError:
Use of reserved word 'extends'. | |
| 1215 PASS (function(){"use strict";var extends = 42; extends === 42}); true threw exc
eption SyntaxError: Use of reserved word 'extends'. | |
| 1216 PASS "use strict";function g(extends){ "use strict"; }; true threw exception Syn
taxError: Use of reserved word 'extends'. | |
| 1217 PASS (function(){"use strict";function g(extends){ "use strict"; }; true}); true
threw exception SyntaxError: Use of reserved word 'extends'. | |
| 1218 PASS "use strict";/extends/.test(function g(extends){ "use strict"; }) threw exc
eption SyntaxError: Use of reserved word 'extends'. | |
| 1219 PASS (function(){"use strict";/extends/.test(function g(extends){ "use strict";
})}); true threw exception SyntaxError: Use of reserved word 'extends'. | |
| 1220 PASS "use strict";try{}catch(extends){}; true threw exception SyntaxError: Use o
f reserved word 'extends'. | |
| 1221 PASS (function(){"use strict";try{}catch(extends){}; true}); true threw exceptio
n SyntaxError: Use of reserved word 'extends'. | |
| 1222 PASS "use strict";function extends(){ "use strict"; }; true threw exception Synt
axError: Use of reserved word 'extends'. | |
| 1223 PASS (function(){"use strict";function extends(){ "use strict"; }; true}); true
threw exception SyntaxError: Use of reserved word 'extends'. | |
| 1224 PASS "use strict";({ "extends": 42 }.extends === 42) is true | |
| 1225 PASS (function(){"use strict";({ "extends": 42 }.extends === 42)}); true is true | |
| 1226 PASS "use strict";({ extends: 42 }.extends === 42) is true | |
| 1227 PASS (function(){"use strict";({ extends: 42 }.extends === 42)}); true is true | |
| 1228 PASS "use strict";({ get extends(){}, set extends(){}, parsedOkay: 42 }.parsedOk
ay === 42) is true | |
| 1229 PASS (function(){"use strict";({ get extends(){}, set extends(){}, parsedOkay: 4
2 }.parsedOkay === 42)}); true is true | |
| 1230 PASS var import; true threw exception SyntaxError: Use of reserved word 'import'
. | |
| 1231 PASS (function(){var import; true}); true threw exception SyntaxError: Use of re
served word 'import'. | |
| 1232 PASS var import = 42; import === 42 threw exception SyntaxError: Use of reserved
word 'import'. | |
| 1233 PASS (function(){var import = 42; import === 42}); true threw exception SyntaxEr
ror: Use of reserved word 'import'. | |
| 1234 PASS function g(import){ }; true threw exception SyntaxError: Use of reserved w
ord 'import'. | |
| 1235 PASS (function(){function g(import){ }; true}); true threw exception SyntaxErro
r: Use of reserved word 'import'. | |
| 1236 PASS /import/.test(function g(import){ }) threw exception SyntaxError: Use of r
eserved word 'import'. | |
| 1237 PASS (function(){/import/.test(function g(import){ })}); true threw exception S
yntaxError: Use of reserved word 'import'. | |
| 1238 PASS try{}catch(import){}; true threw exception SyntaxError: Use of reserved wor
d 'import'. | |
| 1239 PASS (function(){try{}catch(import){}; true}); true threw exception SyntaxError:
Use of reserved word 'import'. | |
| 1240 PASS function import(){ }; true threw exception SyntaxError: Use of reserved wo
rd 'import'. | |
| 1241 PASS (function(){function import(){ }; true}); true threw exception SyntaxError
: Use of reserved word 'import'. | |
| 1242 PASS ({ "import": 42 }.import === 42) is true | |
| 1243 PASS (function(){({ "import": 42 }.import === 42)}); true is true | |
| 1244 PASS ({ import: 42 }.import === 42) is true | |
| 1245 PASS (function(){({ import: 42 }.import === 42)}); true is true | |
| 1246 PASS ({ get import(){}, set import(){}, parsedOkay: 42 }.parsedOkay === 42) is t
rue | |
| 1247 PASS (function(){({ get import(){}, set import(){}, parsedOkay: 42 }.parsedOkay
=== 42)}); true is true | |
| 1248 PASS "use strict";var import; true threw exception SyntaxError: Use of reserved
word 'import'. | |
| 1249 PASS (function(){"use strict";var import; true}); true threw exception SyntaxErr
or: Use of reserved word 'import'. | |
| 1250 PASS "use strict";var import = 42; import === 42 threw exception SyntaxError: Us
e of reserved word 'import'. | |
| 1251 PASS (function(){"use strict";var import = 42; import === 42}); true threw excep
tion SyntaxError: Use of reserved word 'import'. | |
| 1252 PASS "use strict";function g(import){ "use strict"; }; true threw exception Synt
axError: Use of reserved word 'import'. | |
| 1253 PASS (function(){"use strict";function g(import){ "use strict"; }; true}); true
threw exception SyntaxError: Use of reserved word 'import'. | |
| 1254 PASS "use strict";/import/.test(function g(import){ "use strict"; }) threw excep
tion SyntaxError: Use of reserved word 'import'. | |
| 1255 PASS (function(){"use strict";/import/.test(function g(import){ "use strict"; })
}); true threw exception SyntaxError: Use of reserved word 'import'. | |
| 1256 PASS "use strict";try{}catch(import){}; true threw exception SyntaxError: Use of
reserved word 'import'. | |
| 1257 PASS (function(){"use strict";try{}catch(import){}; true}); true threw exception
SyntaxError: Use of reserved word 'import'. | |
| 1258 PASS "use strict";function import(){ "use strict"; }; true threw exception Synta
xError: Use of reserved word 'import'. | |
| 1259 PASS (function(){"use strict";function import(){ "use strict"; }; true}); true t
hrew exception SyntaxError: Use of reserved word 'import'. | |
| 1260 PASS "use strict";({ "import": 42 }.import === 42) is true | |
| 1261 PASS (function(){"use strict";({ "import": 42 }.import === 42)}); true is true | |
| 1262 PASS "use strict";({ import: 42 }.import === 42) is true | |
| 1263 PASS (function(){"use strict";({ import: 42 }.import === 42)}); true is true | |
| 1264 PASS "use strict";({ get import(){}, set import(){}, parsedOkay: 42 }.parsedOkay
=== 42) is true | |
| 1265 PASS (function(){"use strict";({ get import(){}, set import(){}, parsedOkay: 42
}.parsedOkay === 42)}); true is true | |
| 1266 PASS var super; true threw exception SyntaxError: Use of reserved word 'super'. | |
| 1267 PASS (function(){var super; true}); true threw exception SyntaxError: Use of res
erved word 'super'. | |
| 1268 PASS var super = 42; super === 42 threw exception SyntaxError: Use of reserved w
ord 'super'. | |
| 1269 PASS (function(){var super = 42; super === 42}); true threw exception SyntaxErro
r: Use of reserved word 'super'. | |
| 1270 PASS function g(super){ }; true threw exception SyntaxError: Use of reserved wo
rd 'super'. | |
| 1271 PASS (function(){function g(super){ }; true}); true threw exception SyntaxError
: Use of reserved word 'super'. | |
| 1272 PASS /super/.test(function g(super){ }) threw exception SyntaxError: Use of res
erved word 'super'. | |
| 1273 PASS (function(){/super/.test(function g(super){ })}); true threw exception Syn
taxError: Use of reserved word 'super'. | |
| 1274 PASS try{}catch(super){}; true threw exception SyntaxError: Use of reserved word
'super'. | |
| 1275 PASS (function(){try{}catch(super){}; true}); true threw exception SyntaxError:
Use of reserved word 'super'. | |
| 1276 PASS function super(){ }; true threw exception SyntaxError: Use of reserved wor
d 'super'. | |
| 1277 PASS (function(){function super(){ }; true}); true threw exception SyntaxError:
Use of reserved word 'super'. | |
| 1278 PASS ({ "super": 42 }.super === 42) is true | |
| 1279 PASS (function(){({ "super": 42 }.super === 42)}); true is true | |
| 1280 PASS ({ super: 42 }.super === 42) is true | |
| 1281 PASS (function(){({ super: 42 }.super === 42)}); true is true | |
| 1282 PASS ({ get super(){}, set super(){}, parsedOkay: 42 }.parsedOkay === 42) is tru
e | |
| 1283 PASS (function(){({ get super(){}, set super(){}, parsedOkay: 42 }.parsedOkay ==
= 42)}); true is true | |
| 1284 PASS "use strict";var super; true threw exception SyntaxError: Use of reserved w
ord 'super'. | |
| 1285 PASS (function(){"use strict";var super; true}); true threw exception SyntaxErro
r: Use of reserved word 'super'. | |
| 1286 PASS "use strict";var super = 42; super === 42 threw exception SyntaxError: Use
of reserved word 'super'. | |
| 1287 PASS (function(){"use strict";var super = 42; super === 42}); true threw excepti
on SyntaxError: Use of reserved word 'super'. | |
| 1288 PASS "use strict";function g(super){ "use strict"; }; true threw exception Synta
xError: Use of reserved word 'super'. | |
| 1289 PASS (function(){"use strict";function g(super){ "use strict"; }; true}); true t
hrew exception SyntaxError: Use of reserved word 'super'. | |
| 1290 PASS "use strict";/super/.test(function g(super){ "use strict"; }) threw excepti
on SyntaxError: Use of reserved word 'super'. | |
| 1291 PASS (function(){"use strict";/super/.test(function g(super){ "use strict"; })})
; true threw exception SyntaxError: Use of reserved word 'super'. | |
| 1292 PASS "use strict";try{}catch(super){}; true threw exception SyntaxError: Use of
reserved word 'super'. | |
| 1293 PASS (function(){"use strict";try{}catch(super){}; true}); true threw exception
SyntaxError: Use of reserved word 'super'. | |
| 1294 PASS "use strict";function super(){ "use strict"; }; true threw exception Syntax
Error: Use of reserved word 'super'. | |
| 1295 PASS (function(){"use strict";function super(){ "use strict"; }; true}); true th
rew exception SyntaxError: Use of reserved word 'super'. | |
| 1296 PASS "use strict";({ "super": 42 }.super === 42) is true | |
| 1297 PASS (function(){"use strict";({ "super": 42 }.super === 42)}); true is true | |
| 1298 PASS "use strict";({ super: 42 }.super === 42) is true | |
| 1299 PASS (function(){"use strict";({ super: 42 }.super === 42)}); true is true | |
| 1300 PASS "use strict";({ get super(){}, set super(){}, parsedOkay: 42 }.parsedOkay =
== 42) is true | |
| 1301 PASS (function(){"use strict";({ get super(){}, set super(){}, parsedOkay: 42 }.
parsedOkay === 42)}); true is true | |
| 1302 PASS var implements; true is true | |
| 1303 PASS (function(){var implements; true}); true is true | |
| 1304 PASS var implements = 42; implements === 42 is true | |
| 1305 PASS (function(){var implements = 42; implements === 42}); true is true | |
| 1306 PASS function g(implements){ }; true is true | |
| 1307 PASS (function(){function g(implements){ }; true}); true is true | |
| 1308 PASS /implements/.test(function g(implements){ }) is true | |
| 1309 PASS (function(){/implements/.test(function g(implements){ })}); true is true | |
| 1310 PASS try{}catch(implements){}; true is true | |
| 1311 PASS (function(){try{}catch(implements){}; true}); true is true | |
| 1312 PASS function implements(){ }; true is true | |
| 1313 PASS (function(){function implements(){ }; true}); true is true | |
| 1314 PASS ({ "implements": 42 }.implements === 42) is true | |
| 1315 PASS (function(){({ "implements": 42 }.implements === 42)}); true is true | |
| 1316 PASS ({ implements: 42 }.implements === 42) is true | |
| 1317 PASS (function(){({ implements: 42 }.implements === 42)}); true is true | |
| 1318 PASS ({ get implements(){}, set implements(){}, parsedOkay: 42 }.parsedOkay ===
42) is true | |
| 1319 PASS (function(){({ get implements(){}, set implements(){}, parsedOkay: 42 }.par
sedOkay === 42)}); true is true | |
| 1320 PASS "use strict";var implements; true threw exception SyntaxError: Use of reser
ved word 'implements' in strict mode. | |
| 1321 PASS (function(){"use strict";var implements; true}); true threw exception Synta
xError: Use of reserved word 'implements' in strict mode. | |
| 1322 PASS "use strict";var implements = 42; implements === 42 threw exception SyntaxE
rror: Use of reserved word 'implements' in strict mode. | |
| 1323 PASS (function(){"use strict";var implements = 42; implements === 42}); true thr
ew exception SyntaxError: Use of reserved word 'implements' in strict mode. | |
| 1324 PASS "use strict";function g(implements){ "use strict"; }; true threw exception
SyntaxError: Use of reserved word 'implements' in strict mode. | |
| 1325 PASS (function(){"use strict";function g(implements){ "use strict"; }; true}); t
rue threw exception SyntaxError: Use of reserved word 'implements' in strict mod
e. | |
| 1326 PASS "use strict";/implements/.test(function g(implements){ "use strict"; }) thr
ew exception SyntaxError: Use of reserved word 'implements' in strict mode. | |
| 1327 PASS (function(){"use strict";/implements/.test(function g(implements){ "use str
ict"; })}); true threw exception SyntaxError: Use of reserved word 'implements'
in strict mode. | |
| 1328 PASS "use strict";try{}catch(implements){}; true threw exception SyntaxError: Us
e of reserved word 'implements' in strict mode. | |
| 1329 PASS (function(){"use strict";try{}catch(implements){}; true}); true threw excep
tion SyntaxError: Use of reserved word 'implements' in strict mode. | |
| 1330 PASS "use strict";function implements(){ "use strict"; }; true threw exception S
yntaxError: Use of reserved word 'implements' in strict mode. | |
| 1331 PASS (function(){"use strict";function implements(){ "use strict"; }; true}); tr
ue threw exception SyntaxError: Use of reserved word 'implements' in strict mode
. | |
| 1332 PASS "use strict";({ "implements": 42 }.implements === 42) is true | |
| 1333 PASS (function(){"use strict";({ "implements": 42 }.implements === 42)}); true i
s true | |
| 1334 PASS "use strict";({ implements: 42 }.implements === 42) is true | |
| 1335 PASS (function(){"use strict";({ implements: 42 }.implements === 42)}); true is
true | |
| 1336 PASS "use strict";({ get implements(){}, set implements(){}, parsedOkay: 42 }.pa
rsedOkay === 42) is true | |
| 1337 PASS (function(){"use strict";({ get implements(){}, set implements(){}, parsedO
kay: 42 }.parsedOkay === 42)}); true is true | |
| 1338 PASS var let; true is true | |
| 1339 PASS (function(){var let; true}); true is true | |
| 1340 PASS var let = 42; let === 42 is true | |
| 1341 PASS (function(){var let = 42; let === 42}); true is true | |
| 1342 PASS function g(let){ }; true is true | |
| 1343 PASS (function(){function g(let){ }; true}); true is true | |
| 1344 PASS /let/.test(function g(let){ }) is true | |
| 1345 PASS (function(){/let/.test(function g(let){ })}); true is true | |
| 1346 PASS try{}catch(let){}; true is true | |
| 1347 PASS (function(){try{}catch(let){}; true}); true is true | |
| 1348 PASS function let(){ }; true is true | |
| 1349 PASS (function(){function let(){ }; true}); true is true | |
| 1350 PASS ({ "let": 42 }.let === 42) is true | |
| 1351 PASS (function(){({ "let": 42 }.let === 42)}); true is true | |
| 1352 PASS ({ let: 42 }.let === 42) is true | |
| 1353 PASS (function(){({ let: 42 }.let === 42)}); true is true | |
| 1354 PASS ({ get let(){}, set let(){}, parsedOkay: 42 }.parsedOkay === 42) is true | |
| 1355 PASS (function(){({ get let(){}, set let(){}, parsedOkay: 42 }.parsedOkay === 42
)}); true is true | |
| 1356 PASS "use strict";var let; true threw exception SyntaxError: Use of reserved wor
d 'let' in strict mode. | |
| 1357 PASS (function(){"use strict";var let; true}); true threw exception SyntaxError:
Use of reserved word 'let' in strict mode. | |
| 1358 PASS "use strict";var let = 42; let === 42 threw exception SyntaxError: Use of r
eserved word 'let' in strict mode. | |
| 1359 PASS (function(){"use strict";var let = 42; let === 42}); true threw exception S
yntaxError: Use of reserved word 'let' in strict mode. | |
| 1360 PASS "use strict";function g(let){ "use strict"; }; true threw exception SyntaxE
rror: Use of reserved word 'let' in strict mode. | |
| 1361 PASS (function(){"use strict";function g(let){ "use strict"; }; true}); true thr
ew exception SyntaxError: Use of reserved word 'let' in strict mode. | |
| 1362 PASS "use strict";/let/.test(function g(let){ "use strict"; }) threw exception S
yntaxError: Use of reserved word 'let' in strict mode. | |
| 1363 PASS (function(){"use strict";/let/.test(function g(let){ "use strict"; })}); tr
ue threw exception SyntaxError: Use of reserved word 'let' in strict mode. | |
| 1364 PASS "use strict";try{}catch(let){}; true threw exception SyntaxError: Use of re
served word 'let' in strict mode. | |
| 1365 PASS (function(){"use strict";try{}catch(let){}; true}); true threw exception Sy
ntaxError: Use of reserved word 'let' in strict mode. | |
| 1366 PASS "use strict";function let(){ "use strict"; }; true threw exception SyntaxEr
ror: Use of reserved word 'let' in strict mode. | |
| 1367 PASS (function(){"use strict";function let(){ "use strict"; }; true}); true thre
w exception SyntaxError: Use of reserved word 'let' in strict mode. | |
| 1368 PASS "use strict";({ "let": 42 }.let === 42) is true | |
| 1369 PASS (function(){"use strict";({ "let": 42 }.let === 42)}); true is true | |
| 1370 PASS "use strict";({ let: 42 }.let === 42) is true | |
| 1371 PASS (function(){"use strict";({ let: 42 }.let === 42)}); true is true | |
| 1372 PASS "use strict";({ get let(){}, set let(){}, parsedOkay: 42 }.parsedOkay === 4
2) is true | |
| 1373 PASS (function(){"use strict";({ get let(){}, set let(){}, parsedOkay: 42 }.pars
edOkay === 42)}); true is true | |
| 1374 PASS var private; true is true | |
| 1375 PASS (function(){var private; true}); true is true | |
| 1376 PASS var private = 42; private === 42 is true | |
| 1377 PASS (function(){var private = 42; private === 42}); true is true | |
| 1378 PASS function g(private){ }; true is true | |
| 1379 PASS (function(){function g(private){ }; true}); true is true | |
| 1380 PASS /private/.test(function g(private){ }) is true | |
| 1381 PASS (function(){/private/.test(function g(private){ })}); true is true | |
| 1382 PASS try{}catch(private){}; true is true | |
| 1383 PASS (function(){try{}catch(private){}; true}); true is true | |
| 1384 PASS function private(){ }; true is true | |
| 1385 PASS (function(){function private(){ }; true}); true is true | |
| 1386 PASS ({ "private": 42 }.private === 42) is true | |
| 1387 PASS (function(){({ "private": 42 }.private === 42)}); true is true | |
| 1388 PASS ({ private: 42 }.private === 42) is true | |
| 1389 PASS (function(){({ private: 42 }.private === 42)}); true is true | |
| 1390 PASS ({ get private(){}, set private(){}, parsedOkay: 42 }.parsedOkay === 42) is
true | |
| 1391 PASS (function(){({ get private(){}, set private(){}, parsedOkay: 42 }.parsedOka
y === 42)}); true is true | |
| 1392 PASS "use strict";var private; true threw exception SyntaxError: Use of reserved
word 'private' in strict mode. | |
| 1393 PASS (function(){"use strict";var private; true}); true threw exception SyntaxEr
ror: Use of reserved word 'private' in strict mode. | |
| 1394 PASS "use strict";var private = 42; private === 42 threw exception SyntaxError:
Use of reserved word 'private' in strict mode. | |
| 1395 PASS (function(){"use strict";var private = 42; private === 42}); true threw exc
eption SyntaxError: Use of reserved word 'private' in strict mode. | |
| 1396 PASS "use strict";function g(private){ "use strict"; }; true threw exception Syn
taxError: Use of reserved word 'private' in strict mode. | |
| 1397 PASS (function(){"use strict";function g(private){ "use strict"; }; true}); true
threw exception SyntaxError: Use of reserved word 'private' in strict mode. | |
| 1398 PASS "use strict";/private/.test(function g(private){ "use strict"; }) threw exc
eption SyntaxError: Use of reserved word 'private' in strict mode. | |
| 1399 PASS (function(){"use strict";/private/.test(function g(private){ "use strict";
})}); true threw exception SyntaxError: Use of reserved word 'private' in strict
mode. | |
| 1400 PASS "use strict";try{}catch(private){}; true threw exception SyntaxError: Use o
f reserved word 'private' in strict mode. | |
| 1401 PASS (function(){"use strict";try{}catch(private){}; true}); true threw exceptio
n SyntaxError: Use of reserved word 'private' in strict mode. | |
| 1402 PASS "use strict";function private(){ "use strict"; }; true threw exception Synt
axError: Use of reserved word 'private' in strict mode. | |
| 1403 PASS (function(){"use strict";function private(){ "use strict"; }; true}); true
threw exception SyntaxError: Use of reserved word 'private' in strict mode. | |
| 1404 PASS "use strict";({ "private": 42 }.private === 42) is true | |
| 1405 PASS (function(){"use strict";({ "private": 42 }.private === 42)}); true is true | |
| 1406 PASS "use strict";({ private: 42 }.private === 42) is true | |
| 1407 PASS (function(){"use strict";({ private: 42 }.private === 42)}); true is true | |
| 1408 PASS "use strict";({ get private(){}, set private(){}, parsedOkay: 42 }.parsedOk
ay === 42) is true | |
| 1409 PASS (function(){"use strict";({ get private(){}, set private(){}, parsedOkay: 4
2 }.parsedOkay === 42)}); true is true | |
| 1410 PASS var public; true is true | |
| 1411 PASS (function(){var public; true}); true is true | |
| 1412 PASS var public = 42; public === 42 is true | |
| 1413 PASS (function(){var public = 42; public === 42}); true is true | |
| 1414 PASS function g(public){ }; true is true | |
| 1415 PASS (function(){function g(public){ }; true}); true is true | |
| 1416 PASS /public/.test(function g(public){ }) is true | |
| 1417 PASS (function(){/public/.test(function g(public){ })}); true is true | |
| 1418 PASS try{}catch(public){}; true is true | |
| 1419 PASS (function(){try{}catch(public){}; true}); true is true | |
| 1420 PASS function public(){ }; true is true | |
| 1421 PASS (function(){function public(){ }; true}); true is true | |
| 1422 PASS ({ "public": 42 }.public === 42) is true | |
| 1423 PASS (function(){({ "public": 42 }.public === 42)}); true is true | |
| 1424 PASS ({ public: 42 }.public === 42) is true | |
| 1425 PASS (function(){({ public: 42 }.public === 42)}); true is true | |
| 1426 PASS ({ get public(){}, set public(){}, parsedOkay: 42 }.parsedOkay === 42) is t
rue | |
| 1427 PASS (function(){({ get public(){}, set public(){}, parsedOkay: 42 }.parsedOkay
=== 42)}); true is true | |
| 1428 PASS "use strict";var public; true threw exception SyntaxError: Use of reserved
word 'public' in strict mode. | |
| 1429 PASS (function(){"use strict";var public; true}); true threw exception SyntaxErr
or: Use of reserved word 'public' in strict mode. | |
| 1430 PASS "use strict";var public = 42; public === 42 threw exception SyntaxError: Us
e of reserved word 'public' in strict mode. | |
| 1431 PASS (function(){"use strict";var public = 42; public === 42}); true threw excep
tion SyntaxError: Use of reserved word 'public' in strict mode. | |
| 1432 PASS "use strict";function g(public){ "use strict"; }; true threw exception Synt
axError: Use of reserved word 'public' in strict mode. | |
| 1433 PASS (function(){"use strict";function g(public){ "use strict"; }; true}); true
threw exception SyntaxError: Use of reserved word 'public' in strict mode. | |
| 1434 PASS "use strict";/public/.test(function g(public){ "use strict"; }) threw excep
tion SyntaxError: Use of reserved word 'public' in strict mode. | |
| 1435 PASS (function(){"use strict";/public/.test(function g(public){ "use strict"; })
}); true threw exception SyntaxError: Use of reserved word 'public' in strict mo
de. | |
| 1436 PASS "use strict";try{}catch(public){}; true threw exception SyntaxError: Use of
reserved word 'public' in strict mode. | |
| 1437 PASS (function(){"use strict";try{}catch(public){}; true}); true threw exception
SyntaxError: Use of reserved word 'public' in strict mode. | |
| 1438 PASS "use strict";function public(){ "use strict"; }; true threw exception Synta
xError: Use of reserved word 'public' in strict mode. | |
| 1439 PASS (function(){"use strict";function public(){ "use strict"; }; true}); true t
hrew exception SyntaxError: Use of reserved word 'public' in strict mode. | |
| 1440 PASS "use strict";({ "public": 42 }.public === 42) is true | |
| 1441 PASS (function(){"use strict";({ "public": 42 }.public === 42)}); true is true | |
| 1442 PASS "use strict";({ public: 42 }.public === 42) is true | |
| 1443 PASS (function(){"use strict";({ public: 42 }.public === 42)}); true is true | |
| 1444 PASS "use strict";({ get public(){}, set public(){}, parsedOkay: 42 }.parsedOkay
=== 42) is true | |
| 1445 PASS (function(){"use strict";({ get public(){}, set public(){}, parsedOkay: 42
}.parsedOkay === 42)}); true is true | |
| 1446 PASS var yield; true is true | |
| 1447 PASS (function(){var yield; true}); true is true | |
| 1448 PASS var yield = 42; yield === 42 is true | |
| 1449 PASS (function(){var yield = 42; yield === 42}); true is true | |
| 1450 PASS function g(yield){ }; true is true | |
| 1451 PASS (function(){function g(yield){ }; true}); true is true | |
| 1452 PASS /yield/.test(function g(yield){ }) is true | |
| 1453 PASS (function(){/yield/.test(function g(yield){ })}); true is true | |
| 1454 PASS try{}catch(yield){}; true is true | |
| 1455 PASS (function(){try{}catch(yield){}; true}); true is true | |
| 1456 PASS function yield(){ }; true is true | |
| 1457 PASS (function(){function yield(){ }; true}); true is true | |
| 1458 PASS ({ "yield": 42 }.yield === 42) is true | |
| 1459 PASS (function(){({ "yield": 42 }.yield === 42)}); true is true | |
| 1460 PASS ({ yield: 42 }.yield === 42) is true | |
| 1461 PASS (function(){({ yield: 42 }.yield === 42)}); true is true | |
| 1462 PASS ({ get yield(){}, set yield(){}, parsedOkay: 42 }.parsedOkay === 42) is tru
e | |
| 1463 PASS (function(){({ get yield(){}, set yield(){}, parsedOkay: 42 }.parsedOkay ==
= 42)}); true is true | |
| 1464 PASS "use strict";var yield; true threw exception SyntaxError: Use of reserved w
ord 'yield' in strict mode. | |
| 1465 PASS (function(){"use strict";var yield; true}); true threw exception SyntaxErro
r: Use of reserved word 'yield' in strict mode. | |
| 1466 PASS "use strict";var yield = 42; yield === 42 threw exception SyntaxError: Use
of reserved word 'yield' in strict mode. | |
| 1467 PASS (function(){"use strict";var yield = 42; yield === 42}); true threw excepti
on SyntaxError: Use of reserved word 'yield' in strict mode. | |
| 1468 PASS "use strict";function g(yield){ "use strict"; }; true threw exception Synta
xError: Use of reserved word 'yield' in strict mode. | |
| 1469 PASS (function(){"use strict";function g(yield){ "use strict"; }; true}); true t
hrew exception SyntaxError: Use of reserved word 'yield' in strict mode. | |
| 1470 PASS "use strict";/yield/.test(function g(yield){ "use strict"; }) threw excepti
on SyntaxError: Use of reserved word 'yield' in strict mode. | |
| 1471 PASS (function(){"use strict";/yield/.test(function g(yield){ "use strict"; })})
; true threw exception SyntaxError: Use of reserved word 'yield' in strict mode. | |
| 1472 PASS "use strict";try{}catch(yield){}; true threw exception SyntaxError: Use of
reserved word 'yield' in strict mode. | |
| 1473 PASS (function(){"use strict";try{}catch(yield){}; true}); true threw exception
SyntaxError: Use of reserved word 'yield' in strict mode. | |
| 1474 PASS "use strict";function yield(){ "use strict"; }; true threw exception Syntax
Error: Use of reserved word 'yield' in strict mode. | |
| 1475 PASS (function(){"use strict";function yield(){ "use strict"; }; true}); true th
rew exception SyntaxError: Use of reserved word 'yield' in strict mode. | |
| 1476 PASS "use strict";({ "yield": 42 }.yield === 42) is true | |
| 1477 PASS (function(){"use strict";({ "yield": 42 }.yield === 42)}); true is true | |
| 1478 PASS "use strict";({ yield: 42 }.yield === 42) is true | |
| 1479 PASS (function(){"use strict";({ yield: 42 }.yield === 42)}); true is true | |
| 1480 PASS "use strict";({ get yield(){}, set yield(){}, parsedOkay: 42 }.parsedOkay =
== 42) is true | |
| 1481 PASS (function(){"use strict";({ get yield(){}, set yield(){}, parsedOkay: 42 }.
parsedOkay === 42)}); true is true | |
| 1482 PASS var interface; true is true | |
| 1483 PASS (function(){var interface; true}); true is true | |
| 1484 PASS var interface = 42; interface === 42 is true | |
| 1485 PASS (function(){var interface = 42; interface === 42}); true is true | |
| 1486 PASS function g(interface){ }; true is true | |
| 1487 PASS (function(){function g(interface){ }; true}); true is true | |
| 1488 PASS /interface/.test(function g(interface){ }) is true | |
| 1489 PASS (function(){/interface/.test(function g(interface){ })}); true is true | |
| 1490 PASS try{}catch(interface){}; true is true | |
| 1491 PASS (function(){try{}catch(interface){}; true}); true is true | |
| 1492 PASS function interface(){ }; true is true | |
| 1493 PASS (function(){function interface(){ }; true}); true is true | |
| 1494 PASS ({ "interface": 42 }.interface === 42) is true | |
| 1495 PASS (function(){({ "interface": 42 }.interface === 42)}); true is true | |
| 1496 PASS ({ interface: 42 }.interface === 42) is true | |
| 1497 PASS (function(){({ interface: 42 }.interface === 42)}); true is true | |
| 1498 PASS ({ get interface(){}, set interface(){}, parsedOkay: 42 }.parsedOkay === 42
) is true | |
| 1499 PASS (function(){({ get interface(){}, set interface(){}, parsedOkay: 42 }.parse
dOkay === 42)}); true is true | |
| 1500 PASS "use strict";var interface; true threw exception SyntaxError: Use of reserv
ed word 'interface' in strict mode. | |
| 1501 PASS (function(){"use strict";var interface; true}); true threw exception Syntax
Error: Use of reserved word 'interface' in strict mode. | |
| 1502 PASS "use strict";var interface = 42; interface === 42 threw exception SyntaxErr
or: Use of reserved word 'interface' in strict mode. | |
| 1503 PASS (function(){"use strict";var interface = 42; interface === 42}); true threw
exception SyntaxError: Use of reserved word 'interface' in strict mode. | |
| 1504 PASS "use strict";function g(interface){ "use strict"; }; true threw exception S
yntaxError: Use of reserved word 'interface' in strict mode. | |
| 1505 PASS (function(){"use strict";function g(interface){ "use strict"; }; true}); tr
ue threw exception SyntaxError: Use of reserved word 'interface' in strict mode. | |
| 1506 PASS "use strict";/interface/.test(function g(interface){ "use strict"; }) threw
exception SyntaxError: Use of reserved word 'interface' in strict mode. | |
| 1507 PASS (function(){"use strict";/interface/.test(function g(interface){ "use stric
t"; })}); true threw exception SyntaxError: Use of reserved word 'interface' in
strict mode. | |
| 1508 PASS "use strict";try{}catch(interface){}; true threw exception SyntaxError: Use
of reserved word 'interface' in strict mode. | |
| 1509 PASS (function(){"use strict";try{}catch(interface){}; true}); true threw except
ion SyntaxError: Use of reserved word 'interface' in strict mode. | |
| 1510 PASS "use strict";function interface(){ "use strict"; }; true threw exception Sy
ntaxError: Use of reserved word 'interface' in strict mode. | |
| 1511 PASS (function(){"use strict";function interface(){ "use strict"; }; true}); tru
e threw exception SyntaxError: Use of reserved word 'interface' in strict mode. | |
| 1512 PASS "use strict";({ "interface": 42 }.interface === 42) is true | |
| 1513 PASS (function(){"use strict";({ "interface": 42 }.interface === 42)}); true is
true | |
| 1514 PASS "use strict";({ interface: 42 }.interface === 42) is true | |
| 1515 PASS (function(){"use strict";({ interface: 42 }.interface === 42)}); true is tr
ue | |
| 1516 PASS "use strict";({ get interface(){}, set interface(){}, parsedOkay: 42 }.pars
edOkay === 42) is true | |
| 1517 PASS (function(){"use strict";({ get interface(){}, set interface(){}, parsedOka
y: 42 }.parsedOkay === 42)}); true is true | |
| 1518 PASS var package; true is true | |
| 1519 PASS (function(){var package; true}); true is true | |
| 1520 PASS var package = 42; package === 42 is true | |
| 1521 PASS (function(){var package = 42; package === 42}); true is true | |
| 1522 PASS function g(package){ }; true is true | |
| 1523 PASS (function(){function g(package){ }; true}); true is true | |
| 1524 PASS /package/.test(function g(package){ }) is true | |
| 1525 PASS (function(){/package/.test(function g(package){ })}); true is true | |
| 1526 PASS try{}catch(package){}; true is true | |
| 1527 PASS (function(){try{}catch(package){}; true}); true is true | |
| 1528 PASS function package(){ }; true is true | |
| 1529 PASS (function(){function package(){ }; true}); true is true | |
| 1530 PASS ({ "package": 42 }.package === 42) is true | |
| 1531 PASS (function(){({ "package": 42 }.package === 42)}); true is true | |
| 1532 PASS ({ package: 42 }.package === 42) is true | |
| 1533 PASS (function(){({ package: 42 }.package === 42)}); true is true | |
| 1534 PASS ({ get package(){}, set package(){}, parsedOkay: 42 }.parsedOkay === 42) is
true | |
| 1535 PASS (function(){({ get package(){}, set package(){}, parsedOkay: 42 }.parsedOka
y === 42)}); true is true | |
| 1536 PASS "use strict";var package; true threw exception SyntaxError: Use of reserved
word 'package' in strict mode. | |
| 1537 PASS (function(){"use strict";var package; true}); true threw exception SyntaxEr
ror: Use of reserved word 'package' in strict mode. | |
| 1538 PASS "use strict";var package = 42; package === 42 threw exception SyntaxError:
Use of reserved word 'package' in strict mode. | |
| 1539 PASS (function(){"use strict";var package = 42; package === 42}); true threw exc
eption SyntaxError: Use of reserved word 'package' in strict mode. | |
| 1540 PASS "use strict";function g(package){ "use strict"; }; true threw exception Syn
taxError: Use of reserved word 'package' in strict mode. | |
| 1541 PASS (function(){"use strict";function g(package){ "use strict"; }; true}); true
threw exception SyntaxError: Use of reserved word 'package' in strict mode. | |
| 1542 PASS "use strict";/package/.test(function g(package){ "use strict"; }) threw exc
eption SyntaxError: Use of reserved word 'package' in strict mode. | |
| 1543 PASS (function(){"use strict";/package/.test(function g(package){ "use strict";
})}); true threw exception SyntaxError: Use of reserved word 'package' in strict
mode. | |
| 1544 PASS "use strict";try{}catch(package){}; true threw exception SyntaxError: Use o
f reserved word 'package' in strict mode. | |
| 1545 PASS (function(){"use strict";try{}catch(package){}; true}); true threw exceptio
n SyntaxError: Use of reserved word 'package' in strict mode. | |
| 1546 PASS "use strict";function package(){ "use strict"; }; true threw exception Synt
axError: Use of reserved word 'package' in strict mode. | |
| 1547 PASS (function(){"use strict";function package(){ "use strict"; }; true}); true
threw exception SyntaxError: Use of reserved word 'package' in strict mode. | |
| 1548 PASS "use strict";({ "package": 42 }.package === 42) is true | |
| 1549 PASS (function(){"use strict";({ "package": 42 }.package === 42)}); true is true | |
| 1550 PASS "use strict";({ package: 42 }.package === 42) is true | |
| 1551 PASS (function(){"use strict";({ package: 42 }.package === 42)}); true is true | |
| 1552 PASS "use strict";({ get package(){}, set package(){}, parsedOkay: 42 }.parsedOk
ay === 42) is true | |
| 1553 PASS (function(){"use strict";({ get package(){}, set package(){}, parsedOkay: 4
2 }.parsedOkay === 42)}); true is true | |
| 1554 PASS var protected; true is true | |
| 1555 PASS (function(){var protected; true}); true is true | |
| 1556 PASS var protected = 42; protected === 42 is true | |
| 1557 PASS (function(){var protected = 42; protected === 42}); true is true | |
| 1558 PASS function g(protected){ }; true is true | |
| 1559 PASS (function(){function g(protected){ }; true}); true is true | |
| 1560 PASS /protected/.test(function g(protected){ }) is true | |
| 1561 PASS (function(){/protected/.test(function g(protected){ })}); true is true | |
| 1562 PASS try{}catch(protected){}; true is true | |
| 1563 PASS (function(){try{}catch(protected){}; true}); true is true | |
| 1564 PASS function protected(){ }; true is true | |
| 1565 PASS (function(){function protected(){ }; true}); true is true | |
| 1566 PASS ({ "protected": 42 }.protected === 42) is true | |
| 1567 PASS (function(){({ "protected": 42 }.protected === 42)}); true is true | |
| 1568 PASS ({ protected: 42 }.protected === 42) is true | |
| 1569 PASS (function(){({ protected: 42 }.protected === 42)}); true is true | |
| 1570 PASS ({ get protected(){}, set protected(){}, parsedOkay: 42 }.parsedOkay === 42
) is true | |
| 1571 PASS (function(){({ get protected(){}, set protected(){}, parsedOkay: 42 }.parse
dOkay === 42)}); true is true | |
| 1572 PASS "use strict";var protected; true threw exception SyntaxError: Use of reserv
ed word 'protected' in strict mode. | |
| 1573 PASS (function(){"use strict";var protected; true}); true threw exception Syntax
Error: Use of reserved word 'protected' in strict mode. | |
| 1574 PASS "use strict";var protected = 42; protected === 42 threw exception SyntaxErr
or: Use of reserved word 'protected' in strict mode. | |
| 1575 PASS (function(){"use strict";var protected = 42; protected === 42}); true threw
exception SyntaxError: Use of reserved word 'protected' in strict mode. | |
| 1576 PASS "use strict";function g(protected){ "use strict"; }; true threw exception S
yntaxError: Use of reserved word 'protected' in strict mode. | |
| 1577 PASS (function(){"use strict";function g(protected){ "use strict"; }; true}); tr
ue threw exception SyntaxError: Use of reserved word 'protected' in strict mode. | |
| 1578 PASS "use strict";/protected/.test(function g(protected){ "use strict"; }) threw
exception SyntaxError: Use of reserved word 'protected' in strict mode. | |
| 1579 PASS (function(){"use strict";/protected/.test(function g(protected){ "use stric
t"; })}); true threw exception SyntaxError: Use of reserved word 'protected' in
strict mode. | |
| 1580 PASS "use strict";try{}catch(protected){}; true threw exception SyntaxError: Use
of reserved word 'protected' in strict mode. | |
| 1581 PASS (function(){"use strict";try{}catch(protected){}; true}); true threw except
ion SyntaxError: Use of reserved word 'protected' in strict mode. | |
| 1582 PASS "use strict";function protected(){ "use strict"; }; true threw exception Sy
ntaxError: Use of reserved word 'protected' in strict mode. | |
| 1583 PASS (function(){"use strict";function protected(){ "use strict"; }; true}); tru
e threw exception SyntaxError: Use of reserved word 'protected' in strict mode. | |
| 1584 PASS "use strict";({ "protected": 42 }.protected === 42) is true | |
| 1585 PASS (function(){"use strict";({ "protected": 42 }.protected === 42)}); true is
true | |
| 1586 PASS "use strict";({ protected: 42 }.protected === 42) is true | |
| 1587 PASS (function(){"use strict";({ protected: 42 }.protected === 42)}); true is tr
ue | |
| 1588 PASS "use strict";({ get protected(){}, set protected(){}, parsedOkay: 42 }.pars
edOkay === 42) is true | |
| 1589 PASS (function(){"use strict";({ get protected(){}, set protected(){}, parsedOka
y: 42 }.parsedOkay === 42)}); true is true | |
| 1590 PASS var static; true is true | |
| 1591 PASS (function(){var static; true}); true is true | |
| 1592 PASS var static = 42; static === 42 is true | |
| 1593 PASS (function(){var static = 42; static === 42}); true is true | |
| 1594 PASS function g(static){ }; true is true | |
| 1595 PASS (function(){function g(static){ }; true}); true is true | |
| 1596 PASS /static/.test(function g(static){ }) is true | |
| 1597 PASS (function(){/static/.test(function g(static){ })}); true is true | |
| 1598 PASS try{}catch(static){}; true is true | |
| 1599 PASS (function(){try{}catch(static){}; true}); true is true | |
| 1600 PASS function static(){ }; true is true | |
| 1601 PASS (function(){function static(){ }; true}); true is true | |
| 1602 PASS ({ "static": 42 }.static === 42) is true | |
| 1603 PASS (function(){({ "static": 42 }.static === 42)}); true is true | |
| 1604 PASS ({ static: 42 }.static === 42) is true | |
| 1605 PASS (function(){({ static: 42 }.static === 42)}); true is true | |
| 1606 PASS ({ get static(){}, set static(){}, parsedOkay: 42 }.parsedOkay === 42) is t
rue | |
| 1607 PASS (function(){({ get static(){}, set static(){}, parsedOkay: 42 }.parsedOkay
=== 42)}); true is true | |
| 1608 PASS "use strict";var static; true threw exception SyntaxError: Use of reserved
word 'static' in strict mode. | |
| 1609 PASS (function(){"use strict";var static; true}); true threw exception SyntaxErr
or: Use of reserved word 'static' in strict mode. | |
| 1610 PASS "use strict";var static = 42; static === 42 threw exception SyntaxError: Us
e of reserved word 'static' in strict mode. | |
| 1611 PASS (function(){"use strict";var static = 42; static === 42}); true threw excep
tion SyntaxError: Use of reserved word 'static' in strict mode. | |
| 1612 PASS "use strict";function g(static){ "use strict"; }; true threw exception Synt
axError: Use of reserved word 'static' in strict mode. | |
| 1613 PASS (function(){"use strict";function g(static){ "use strict"; }; true}); true
threw exception SyntaxError: Use of reserved word 'static' in strict mode. | |
| 1614 PASS "use strict";/static/.test(function g(static){ "use strict"; }) threw excep
tion SyntaxError: Use of reserved word 'static' in strict mode. | |
| 1615 PASS (function(){"use strict";/static/.test(function g(static){ "use strict"; })
}); true threw exception SyntaxError: Use of reserved word 'static' in strict mo
de. | |
| 1616 PASS "use strict";try{}catch(static){}; true threw exception SyntaxError: Use of
reserved word 'static' in strict mode. | |
| 1617 PASS (function(){"use strict";try{}catch(static){}; true}); true threw exception
SyntaxError: Use of reserved word 'static' in strict mode. | |
| 1618 PASS "use strict";function static(){ "use strict"; }; true threw exception Synta
xError: Use of reserved word 'static' in strict mode. | |
| 1619 PASS (function(){"use strict";function static(){ "use strict"; }; true}); true t
hrew exception SyntaxError: Use of reserved word 'static' in strict mode. | |
| 1620 PASS "use strict";({ "static": 42 }.static === 42) is true | |
| 1621 PASS (function(){"use strict";({ "static": 42 }.static === 42)}); true is true | |
| 1622 PASS "use strict";({ static: 42 }.static === 42) is true | |
| 1623 PASS (function(){"use strict";({ static: 42 }.static === 42)}); true is true | |
| 1624 PASS "use strict";({ get static(){}, set static(){}, parsedOkay: 42 }.parsedOkay
=== 42) is true | |
| 1625 PASS (function(){"use strict";({ get static(){}, set static(){}, parsedOkay: 42
}.parsedOkay === 42)}); true is true | |
| 1626 PASS var abstract; true is true | |
| 1627 PASS (function(){var abstract; true}); true is true | |
| 1628 PASS var abstract = 42; abstract === 42 is true | |
| 1629 PASS (function(){var abstract = 42; abstract === 42}); true is true | |
| 1630 PASS function g(abstract){ }; true is true | |
| 1631 PASS (function(){function g(abstract){ }; true}); true is true | |
| 1632 PASS /abstract/.test(function g(abstract){ }) is true | |
| 1633 PASS (function(){/abstract/.test(function g(abstract){ })}); true is true | |
| 1634 PASS try{}catch(abstract){}; true is true | |
| 1635 PASS (function(){try{}catch(abstract){}; true}); true is true | |
| 1636 PASS function abstract(){ }; true is true | |
| 1637 PASS (function(){function abstract(){ }; true}); true is true | |
| 1638 PASS ({ "abstract": 42 }.abstract === 42) is true | |
| 1639 PASS (function(){({ "abstract": 42 }.abstract === 42)}); true is true | |
| 1640 PASS ({ abstract: 42 }.abstract === 42) is true | |
| 1641 PASS (function(){({ abstract: 42 }.abstract === 42)}); true is true | |
| 1642 PASS ({ get abstract(){}, set abstract(){}, parsedOkay: 42 }.parsedOkay === 42)
is true | |
| 1643 PASS (function(){({ get abstract(){}, set abstract(){}, parsedOkay: 42 }.parsedO
kay === 42)}); true is true | |
| 1644 PASS "use strict";var abstract; true is true | |
| 1645 PASS (function(){"use strict";var abstract; true}); true is true | |
| 1646 PASS "use strict";var abstract = 42; abstract === 42 is true | |
| 1647 PASS (function(){"use strict";var abstract = 42; abstract === 42}); true is true | |
| 1648 PASS "use strict";function g(abstract){ "use strict"; }; true is true | |
| 1649 PASS (function(){"use strict";function g(abstract){ "use strict"; }; true}); tru
e is true | |
| 1650 PASS "use strict";/abstract/.test(function g(abstract){ "use strict"; }) is true | |
| 1651 PASS (function(){"use strict";/abstract/.test(function g(abstract){ "use strict"
; })}); true is true | |
| 1652 PASS "use strict";try{}catch(abstract){}; true is true | |
| 1653 PASS (function(){"use strict";try{}catch(abstract){}; true}); true is true | |
| 1654 PASS "use strict";function abstract(){ "use strict"; }; true is true | |
| 1655 PASS (function(){"use strict";function abstract(){ "use strict"; }; true}); true
is true | |
| 1656 PASS "use strict";({ "abstract": 42 }.abstract === 42) is true | |
| 1657 PASS (function(){"use strict";({ "abstract": 42 }.abstract === 42)}); true is tr
ue | |
| 1658 PASS "use strict";({ abstract: 42 }.abstract === 42) is true | |
| 1659 PASS (function(){"use strict";({ abstract: 42 }.abstract === 42)}); true is true | |
| 1660 PASS "use strict";({ get abstract(){}, set abstract(){}, parsedOkay: 42 }.parsed
Okay === 42) is true | |
| 1661 PASS (function(){"use strict";({ get abstract(){}, set abstract(){}, parsedOkay:
42 }.parsedOkay === 42)}); true is true | |
| 1662 PASS var boolean; true is true | |
| 1663 PASS (function(){var boolean; true}); true is true | |
| 1664 PASS var boolean = 42; boolean === 42 is true | |
| 1665 PASS (function(){var boolean = 42; boolean === 42}); true is true | |
| 1666 PASS function g(boolean){ }; true is true | |
| 1667 PASS (function(){function g(boolean){ }; true}); true is true | |
| 1668 PASS /boolean/.test(function g(boolean){ }) is true | |
| 1669 PASS (function(){/boolean/.test(function g(boolean){ })}); true is true | |
| 1670 PASS try{}catch(boolean){}; true is true | |
| 1671 PASS (function(){try{}catch(boolean){}; true}); true is true | |
| 1672 PASS function boolean(){ }; true is true | |
| 1673 PASS (function(){function boolean(){ }; true}); true is true | |
| 1674 PASS ({ "boolean": 42 }.boolean === 42) is true | |
| 1675 PASS (function(){({ "boolean": 42 }.boolean === 42)}); true is true | |
| 1676 PASS ({ boolean: 42 }.boolean === 42) is true | |
| 1677 PASS (function(){({ boolean: 42 }.boolean === 42)}); true is true | |
| 1678 PASS ({ get boolean(){}, set boolean(){}, parsedOkay: 42 }.parsedOkay === 42) is
true | |
| 1679 PASS (function(){({ get boolean(){}, set boolean(){}, parsedOkay: 42 }.parsedOka
y === 42)}); true is true | |
| 1680 PASS "use strict";var boolean; true is true | |
| 1681 PASS (function(){"use strict";var boolean; true}); true is true | |
| 1682 PASS "use strict";var boolean = 42; boolean === 42 is true | |
| 1683 PASS (function(){"use strict";var boolean = 42; boolean === 42}); true is true | |
| 1684 PASS "use strict";function g(boolean){ "use strict"; }; true is true | |
| 1685 PASS (function(){"use strict";function g(boolean){ "use strict"; }; true}); true
is true | |
| 1686 PASS "use strict";/boolean/.test(function g(boolean){ "use strict"; }) is true | |
| 1687 PASS (function(){"use strict";/boolean/.test(function g(boolean){ "use strict";
})}); true is true | |
| 1688 PASS "use strict";try{}catch(boolean){}; true is true | |
| 1689 PASS (function(){"use strict";try{}catch(boolean){}; true}); true is true | |
| 1690 PASS "use strict";function boolean(){ "use strict"; }; true is true | |
| 1691 PASS (function(){"use strict";function boolean(){ "use strict"; }; true}); true
is true | |
| 1692 PASS "use strict";({ "boolean": 42 }.boolean === 42) is true | |
| 1693 PASS (function(){"use strict";({ "boolean": 42 }.boolean === 42)}); true is true | |
| 1694 PASS "use strict";({ boolean: 42 }.boolean === 42) is true | |
| 1695 PASS (function(){"use strict";({ boolean: 42 }.boolean === 42)}); true is true | |
| 1696 PASS "use strict";({ get boolean(){}, set boolean(){}, parsedOkay: 42 }.parsedOk
ay === 42) is true | |
| 1697 PASS (function(){"use strict";({ get boolean(){}, set boolean(){}, parsedOkay: 4
2 }.parsedOkay === 42)}); true is true | |
| 1698 PASS var byte; true is true | |
| 1699 PASS (function(){var byte; true}); true is true | |
| 1700 PASS var byte = 42; byte === 42 is true | |
| 1701 PASS (function(){var byte = 42; byte === 42}); true is true | |
| 1702 PASS function g(byte){ }; true is true | |
| 1703 PASS (function(){function g(byte){ }; true}); true is true | |
| 1704 PASS /byte/.test(function g(byte){ }) is true | |
| 1705 PASS (function(){/byte/.test(function g(byte){ })}); true is true | |
| 1706 PASS try{}catch(byte){}; true is true | |
| 1707 PASS (function(){try{}catch(byte){}; true}); true is true | |
| 1708 PASS function byte(){ }; true is true | |
| 1709 PASS (function(){function byte(){ }; true}); true is true | |
| 1710 PASS ({ "byte": 42 }.byte === 42) is true | |
| 1711 PASS (function(){({ "byte": 42 }.byte === 42)}); true is true | |
| 1712 PASS ({ byte: 42 }.byte === 42) is true | |
| 1713 PASS (function(){({ byte: 42 }.byte === 42)}); true is true | |
| 1714 PASS ({ get byte(){}, set byte(){}, parsedOkay: 42 }.parsedOkay === 42) is true | |
| 1715 PASS (function(){({ get byte(){}, set byte(){}, parsedOkay: 42 }.parsedOkay ===
42)}); true is true | |
| 1716 PASS "use strict";var byte; true is true | |
| 1717 PASS (function(){"use strict";var byte; true}); true is true | |
| 1718 PASS "use strict";var byte = 42; byte === 42 is true | |
| 1719 PASS (function(){"use strict";var byte = 42; byte === 42}); true is true | |
| 1720 PASS "use strict";function g(byte){ "use strict"; }; true is true | |
| 1721 PASS (function(){"use strict";function g(byte){ "use strict"; }; true}); true is
true | |
| 1722 PASS "use strict";/byte/.test(function g(byte){ "use strict"; }) is true | |
| 1723 PASS (function(){"use strict";/byte/.test(function g(byte){ "use strict"; })});
true is true | |
| 1724 PASS "use strict";try{}catch(byte){}; true is true | |
| 1725 PASS (function(){"use strict";try{}catch(byte){}; true}); true is true | |
| 1726 PASS "use strict";function byte(){ "use strict"; }; true is true | |
| 1727 PASS (function(){"use strict";function byte(){ "use strict"; }; true}); true is
true | |
| 1728 PASS "use strict";({ "byte": 42 }.byte === 42) is true | |
| 1729 PASS (function(){"use strict";({ "byte": 42 }.byte === 42)}); true is true | |
| 1730 PASS "use strict";({ byte: 42 }.byte === 42) is true | |
| 1731 PASS (function(){"use strict";({ byte: 42 }.byte === 42)}); true is true | |
| 1732 PASS "use strict";({ get byte(){}, set byte(){}, parsedOkay: 42 }.parsedOkay ===
42) is true | |
| 1733 PASS (function(){"use strict";({ get byte(){}, set byte(){}, parsedOkay: 42 }.pa
rsedOkay === 42)}); true is true | |
| 1734 PASS var char; true is true | |
| 1735 PASS (function(){var char; true}); true is true | |
| 1736 PASS var char = 42; char === 42 is true | |
| 1737 PASS (function(){var char = 42; char === 42}); true is true | |
| 1738 PASS function g(char){ }; true is true | |
| 1739 PASS (function(){function g(char){ }; true}); true is true | |
| 1740 PASS /char/.test(function g(char){ }) is true | |
| 1741 PASS (function(){/char/.test(function g(char){ })}); true is true | |
| 1742 PASS try{}catch(char){}; true is true | |
| 1743 PASS (function(){try{}catch(char){}; true}); true is true | |
| 1744 PASS function char(){ }; true is true | |
| 1745 PASS (function(){function char(){ }; true}); true is true | |
| 1746 PASS ({ "char": 42 }.char === 42) is true | |
| 1747 PASS (function(){({ "char": 42 }.char === 42)}); true is true | |
| 1748 PASS ({ char: 42 }.char === 42) is true | |
| 1749 PASS (function(){({ char: 42 }.char === 42)}); true is true | |
| 1750 PASS ({ get char(){}, set char(){}, parsedOkay: 42 }.parsedOkay === 42) is true | |
| 1751 PASS (function(){({ get char(){}, set char(){}, parsedOkay: 42 }.parsedOkay ===
42)}); true is true | |
| 1752 PASS "use strict";var char; true is true | |
| 1753 PASS (function(){"use strict";var char; true}); true is true | |
| 1754 PASS "use strict";var char = 42; char === 42 is true | |
| 1755 PASS (function(){"use strict";var char = 42; char === 42}); true is true | |
| 1756 PASS "use strict";function g(char){ "use strict"; }; true is true | |
| 1757 PASS (function(){"use strict";function g(char){ "use strict"; }; true}); true is
true | |
| 1758 PASS "use strict";/char/.test(function g(char){ "use strict"; }) is true | |
| 1759 PASS (function(){"use strict";/char/.test(function g(char){ "use strict"; })});
true is true | |
| 1760 PASS "use strict";try{}catch(char){}; true is true | |
| 1761 PASS (function(){"use strict";try{}catch(char){}; true}); true is true | |
| 1762 PASS "use strict";function char(){ "use strict"; }; true is true | |
| 1763 PASS (function(){"use strict";function char(){ "use strict"; }; true}); true is
true | |
| 1764 PASS "use strict";({ "char": 42 }.char === 42) is true | |
| 1765 PASS (function(){"use strict";({ "char": 42 }.char === 42)}); true is true | |
| 1766 PASS "use strict";({ char: 42 }.char === 42) is true | |
| 1767 PASS (function(){"use strict";({ char: 42 }.char === 42)}); true is true | |
| 1768 PASS "use strict";({ get char(){}, set char(){}, parsedOkay: 42 }.parsedOkay ===
42) is true | |
| 1769 PASS (function(){"use strict";({ get char(){}, set char(){}, parsedOkay: 42 }.pa
rsedOkay === 42)}); true is true | |
| 1770 PASS var double; true is true | |
| 1771 PASS (function(){var double; true}); true is true | |
| 1772 PASS var double = 42; double === 42 is true | |
| 1773 PASS (function(){var double = 42; double === 42}); true is true | |
| 1774 PASS function g(double){ }; true is true | |
| 1775 PASS (function(){function g(double){ }; true}); true is true | |
| 1776 PASS /double/.test(function g(double){ }) is true | |
| 1777 PASS (function(){/double/.test(function g(double){ })}); true is true | |
| 1778 PASS try{}catch(double){}; true is true | |
| 1779 PASS (function(){try{}catch(double){}; true}); true is true | |
| 1780 PASS function double(){ }; true is true | |
| 1781 PASS (function(){function double(){ }; true}); true is true | |
| 1782 PASS ({ "double": 42 }.double === 42) is true | |
| 1783 PASS (function(){({ "double": 42 }.double === 42)}); true is true | |
| 1784 PASS ({ double: 42 }.double === 42) is true | |
| 1785 PASS (function(){({ double: 42 }.double === 42)}); true is true | |
| 1786 PASS ({ get double(){}, set double(){}, parsedOkay: 42 }.parsedOkay === 42) is t
rue | |
| 1787 PASS (function(){({ get double(){}, set double(){}, parsedOkay: 42 }.parsedOkay
=== 42)}); true is true | |
| 1788 PASS "use strict";var double; true is true | |
| 1789 PASS (function(){"use strict";var double; true}); true is true | |
| 1790 PASS "use strict";var double = 42; double === 42 is true | |
| 1791 PASS (function(){"use strict";var double = 42; double === 42}); true is true | |
| 1792 PASS "use strict";function g(double){ "use strict"; }; true is true | |
| 1793 PASS (function(){"use strict";function g(double){ "use strict"; }; true}); true
is true | |
| 1794 PASS "use strict";/double/.test(function g(double){ "use strict"; }) is true | |
| 1795 PASS (function(){"use strict";/double/.test(function g(double){ "use strict"; })
}); true is true | |
| 1796 PASS "use strict";try{}catch(double){}; true is true | |
| 1797 PASS (function(){"use strict";try{}catch(double){}; true}); true is true | |
| 1798 PASS "use strict";function double(){ "use strict"; }; true is true | |
| 1799 PASS (function(){"use strict";function double(){ "use strict"; }; true}); true i
s true | |
| 1800 PASS "use strict";({ "double": 42 }.double === 42) is true | |
| 1801 PASS (function(){"use strict";({ "double": 42 }.double === 42)}); true is true | |
| 1802 PASS "use strict";({ double: 42 }.double === 42) is true | |
| 1803 PASS (function(){"use strict";({ double: 42 }.double === 42)}); true is true | |
| 1804 PASS "use strict";({ get double(){}, set double(){}, parsedOkay: 42 }.parsedOkay
=== 42) is true | |
| 1805 PASS (function(){"use strict";({ get double(){}, set double(){}, parsedOkay: 42
}.parsedOkay === 42)}); true is true | |
| 1806 PASS var final; true is true | |
| 1807 PASS (function(){var final; true}); true is true | |
| 1808 PASS var final = 42; final === 42 is true | |
| 1809 PASS (function(){var final = 42; final === 42}); true is true | |
| 1810 PASS function g(final){ }; true is true | |
| 1811 PASS (function(){function g(final){ }; true}); true is true | |
| 1812 PASS /final/.test(function g(final){ }) is true | |
| 1813 PASS (function(){/final/.test(function g(final){ })}); true is true | |
| 1814 PASS try{}catch(final){}; true is true | |
| 1815 PASS (function(){try{}catch(final){}; true}); true is true | |
| 1816 PASS function final(){ }; true is true | |
| 1817 PASS (function(){function final(){ }; true}); true is true | |
| 1818 PASS ({ "final": 42 }.final === 42) is true | |
| 1819 PASS (function(){({ "final": 42 }.final === 42)}); true is true | |
| 1820 PASS ({ final: 42 }.final === 42) is true | |
| 1821 PASS (function(){({ final: 42 }.final === 42)}); true is true | |
| 1822 PASS ({ get final(){}, set final(){}, parsedOkay: 42 }.parsedOkay === 42) is tru
e | |
| 1823 PASS (function(){({ get final(){}, set final(){}, parsedOkay: 42 }.parsedOkay ==
= 42)}); true is true | |
| 1824 PASS "use strict";var final; true is true | |
| 1825 PASS (function(){"use strict";var final; true}); true is true | |
| 1826 PASS "use strict";var final = 42; final === 42 is true | |
| 1827 PASS (function(){"use strict";var final = 42; final === 42}); true is true | |
| 1828 PASS "use strict";function g(final){ "use strict"; }; true is true | |
| 1829 PASS (function(){"use strict";function g(final){ "use strict"; }; true}); true i
s true | |
| 1830 PASS "use strict";/final/.test(function g(final){ "use strict"; }) is true | |
| 1831 PASS (function(){"use strict";/final/.test(function g(final){ "use strict"; })})
; true is true | |
| 1832 PASS "use strict";try{}catch(final){}; true is true | |
| 1833 PASS (function(){"use strict";try{}catch(final){}; true}); true is true | |
| 1834 PASS "use strict";function final(){ "use strict"; }; true is true | |
| 1835 PASS (function(){"use strict";function final(){ "use strict"; }; true}); true is
true | |
| 1836 PASS "use strict";({ "final": 42 }.final === 42) is true | |
| 1837 PASS (function(){"use strict";({ "final": 42 }.final === 42)}); true is true | |
| 1838 PASS "use strict";({ final: 42 }.final === 42) is true | |
| 1839 PASS (function(){"use strict";({ final: 42 }.final === 42)}); true is true | |
| 1840 PASS "use strict";({ get final(){}, set final(){}, parsedOkay: 42 }.parsedOkay =
== 42) is true | |
| 1841 PASS (function(){"use strict";({ get final(){}, set final(){}, parsedOkay: 42 }.
parsedOkay === 42)}); true is true | |
| 1842 PASS var float; true is true | |
| 1843 PASS (function(){var float; true}); true is true | |
| 1844 PASS var float = 42; float === 42 is true | |
| 1845 PASS (function(){var float = 42; float === 42}); true is true | |
| 1846 PASS function g(float){ }; true is true | |
| 1847 PASS (function(){function g(float){ }; true}); true is true | |
| 1848 PASS /float/.test(function g(float){ }) is true | |
| 1849 PASS (function(){/float/.test(function g(float){ })}); true is true | |
| 1850 PASS try{}catch(float){}; true is true | |
| 1851 PASS (function(){try{}catch(float){}; true}); true is true | |
| 1852 PASS function float(){ }; true is true | |
| 1853 PASS (function(){function float(){ }; true}); true is true | |
| 1854 PASS ({ "float": 42 }.float === 42) is true | |
| 1855 PASS (function(){({ "float": 42 }.float === 42)}); true is true | |
| 1856 PASS ({ float: 42 }.float === 42) is true | |
| 1857 PASS (function(){({ float: 42 }.float === 42)}); true is true | |
| 1858 PASS ({ get float(){}, set float(){}, parsedOkay: 42 }.parsedOkay === 42) is tru
e | |
| 1859 PASS (function(){({ get float(){}, set float(){}, parsedOkay: 42 }.parsedOkay ==
= 42)}); true is true | |
| 1860 PASS "use strict";var float; true is true | |
| 1861 PASS (function(){"use strict";var float; true}); true is true | |
| 1862 PASS "use strict";var float = 42; float === 42 is true | |
| 1863 PASS (function(){"use strict";var float = 42; float === 42}); true is true | |
| 1864 PASS "use strict";function g(float){ "use strict"; }; true is true | |
| 1865 PASS (function(){"use strict";function g(float){ "use strict"; }; true}); true i
s true | |
| 1866 PASS "use strict";/float/.test(function g(float){ "use strict"; }) is true | |
| 1867 PASS (function(){"use strict";/float/.test(function g(float){ "use strict"; })})
; true is true | |
| 1868 PASS "use strict";try{}catch(float){}; true is true | |
| 1869 PASS (function(){"use strict";try{}catch(float){}; true}); true is true | |
| 1870 PASS "use strict";function float(){ "use strict"; }; true is true | |
| 1871 PASS (function(){"use strict";function float(){ "use strict"; }; true}); true is
true | |
| 1872 PASS "use strict";({ "float": 42 }.float === 42) is true | |
| 1873 PASS (function(){"use strict";({ "float": 42 }.float === 42)}); true is true | |
| 1874 PASS "use strict";({ float: 42 }.float === 42) is true | |
| 1875 PASS (function(){"use strict";({ float: 42 }.float === 42)}); true is true | |
| 1876 PASS "use strict";({ get float(){}, set float(){}, parsedOkay: 42 }.parsedOkay =
== 42) is true | |
| 1877 PASS (function(){"use strict";({ get float(){}, set float(){}, parsedOkay: 42 }.
parsedOkay === 42)}); true is true | |
| 1878 PASS var goto; true is true | |
| 1879 PASS (function(){var goto; true}); true is true | |
| 1880 PASS var goto = 42; goto === 42 is true | |
| 1881 PASS (function(){var goto = 42; goto === 42}); true is true | |
| 1882 PASS function g(goto){ }; true is true | |
| 1883 PASS (function(){function g(goto){ }; true}); true is true | |
| 1884 PASS /goto/.test(function g(goto){ }) is true | |
| 1885 PASS (function(){/goto/.test(function g(goto){ })}); true is true | |
| 1886 PASS try{}catch(goto){}; true is true | |
| 1887 PASS (function(){try{}catch(goto){}; true}); true is true | |
| 1888 PASS function goto(){ }; true is true | |
| 1889 PASS (function(){function goto(){ }; true}); true is true | |
| 1890 PASS ({ "goto": 42 }.goto === 42) is true | |
| 1891 PASS (function(){({ "goto": 42 }.goto === 42)}); true is true | |
| 1892 PASS ({ goto: 42 }.goto === 42) is true | |
| 1893 PASS (function(){({ goto: 42 }.goto === 42)}); true is true | |
| 1894 PASS ({ get goto(){}, set goto(){}, parsedOkay: 42 }.parsedOkay === 42) is true | |
| 1895 PASS (function(){({ get goto(){}, set goto(){}, parsedOkay: 42 }.parsedOkay ===
42)}); true is true | |
| 1896 PASS "use strict";var goto; true is true | |
| 1897 PASS (function(){"use strict";var goto; true}); true is true | |
| 1898 PASS "use strict";var goto = 42; goto === 42 is true | |
| 1899 PASS (function(){"use strict";var goto = 42; goto === 42}); true is true | |
| 1900 PASS "use strict";function g(goto){ "use strict"; }; true is true | |
| 1901 PASS (function(){"use strict";function g(goto){ "use strict"; }; true}); true is
true | |
| 1902 PASS "use strict";/goto/.test(function g(goto){ "use strict"; }) is true | |
| 1903 PASS (function(){"use strict";/goto/.test(function g(goto){ "use strict"; })});
true is true | |
| 1904 PASS "use strict";try{}catch(goto){}; true is true | |
| 1905 PASS (function(){"use strict";try{}catch(goto){}; true}); true is true | |
| 1906 PASS "use strict";function goto(){ "use strict"; }; true is true | |
| 1907 PASS (function(){"use strict";function goto(){ "use strict"; }; true}); true is
true | |
| 1908 PASS "use strict";({ "goto": 42 }.goto === 42) is true | |
| 1909 PASS (function(){"use strict";({ "goto": 42 }.goto === 42)}); true is true | |
| 1910 PASS "use strict";({ goto: 42 }.goto === 42) is true | |
| 1911 PASS (function(){"use strict";({ goto: 42 }.goto === 42)}); true is true | |
| 1912 PASS "use strict";({ get goto(){}, set goto(){}, parsedOkay: 42 }.parsedOkay ===
42) is true | |
| 1913 PASS (function(){"use strict";({ get goto(){}, set goto(){}, parsedOkay: 42 }.pa
rsedOkay === 42)}); true is true | |
| 1914 PASS var int; true is true | |
| 1915 PASS (function(){var int; true}); true is true | |
| 1916 PASS var int = 42; int === 42 is true | |
| 1917 PASS (function(){var int = 42; int === 42}); true is true | |
| 1918 PASS function g(int){ }; true is true | |
| 1919 PASS (function(){function g(int){ }; true}); true is true | |
| 1920 PASS /int/.test(function g(int){ }) is true | |
| 1921 PASS (function(){/int/.test(function g(int){ })}); true is true | |
| 1922 PASS try{}catch(int){}; true is true | |
| 1923 PASS (function(){try{}catch(int){}; true}); true is true | |
| 1924 PASS function int(){ }; true is true | |
| 1925 PASS (function(){function int(){ }; true}); true is true | |
| 1926 PASS ({ "int": 42 }.int === 42) is true | |
| 1927 PASS (function(){({ "int": 42 }.int === 42)}); true is true | |
| 1928 PASS ({ int: 42 }.int === 42) is true | |
| 1929 PASS (function(){({ int: 42 }.int === 42)}); true is true | |
| 1930 PASS ({ get int(){}, set int(){}, parsedOkay: 42 }.parsedOkay === 42) is true | |
| 1931 PASS (function(){({ get int(){}, set int(){}, parsedOkay: 42 }.parsedOkay === 42
)}); true is true | |
| 1932 PASS "use strict";var int; true is true | |
| 1933 PASS (function(){"use strict";var int; true}); true is true | |
| 1934 PASS "use strict";var int = 42; int === 42 is true | |
| 1935 PASS (function(){"use strict";var int = 42; int === 42}); true is true | |
| 1936 PASS "use strict";function g(int){ "use strict"; }; true is true | |
| 1937 PASS (function(){"use strict";function g(int){ "use strict"; }; true}); true is
true | |
| 1938 PASS "use strict";/int/.test(function g(int){ "use strict"; }) is true | |
| 1939 PASS (function(){"use strict";/int/.test(function g(int){ "use strict"; })}); tr
ue is true | |
| 1940 PASS "use strict";try{}catch(int){}; true is true | |
| 1941 PASS (function(){"use strict";try{}catch(int){}; true}); true is true | |
| 1942 PASS "use strict";function int(){ "use strict"; }; true is true | |
| 1943 PASS (function(){"use strict";function int(){ "use strict"; }; true}); true is t
rue | |
| 1944 PASS "use strict";({ "int": 42 }.int === 42) is true | |
| 1945 PASS (function(){"use strict";({ "int": 42 }.int === 42)}); true is true | |
| 1946 PASS "use strict";({ int: 42 }.int === 42) is true | |
| 1947 PASS (function(){"use strict";({ int: 42 }.int === 42)}); true is true | |
| 1948 PASS "use strict";({ get int(){}, set int(){}, parsedOkay: 42 }.parsedOkay === 4
2) is true | |
| 1949 PASS (function(){"use strict";({ get int(){}, set int(){}, parsedOkay: 42 }.pars
edOkay === 42)}); true is true | |
| 1950 PASS var long; true is true | |
| 1951 PASS (function(){var long; true}); true is true | |
| 1952 PASS var long = 42; long === 42 is true | |
| 1953 PASS (function(){var long = 42; long === 42}); true is true | |
| 1954 PASS function g(long){ }; true is true | |
| 1955 PASS (function(){function g(long){ }; true}); true is true | |
| 1956 PASS /long/.test(function g(long){ }) is true | |
| 1957 PASS (function(){/long/.test(function g(long){ })}); true is true | |
| 1958 PASS try{}catch(long){}; true is true | |
| 1959 PASS (function(){try{}catch(long){}; true}); true is true | |
| 1960 PASS function long(){ }; true is true | |
| 1961 PASS (function(){function long(){ }; true}); true is true | |
| 1962 PASS ({ "long": 42 }.long === 42) is true | |
| 1963 PASS (function(){({ "long": 42 }.long === 42)}); true is true | |
| 1964 PASS ({ long: 42 }.long === 42) is true | |
| 1965 PASS (function(){({ long: 42 }.long === 42)}); true is true | |
| 1966 PASS ({ get long(){}, set long(){}, parsedOkay: 42 }.parsedOkay === 42) is true | |
| 1967 PASS (function(){({ get long(){}, set long(){}, parsedOkay: 42 }.parsedOkay ===
42)}); true is true | |
| 1968 PASS "use strict";var long; true is true | |
| 1969 PASS (function(){"use strict";var long; true}); true is true | |
| 1970 PASS "use strict";var long = 42; long === 42 is true | |
| 1971 PASS (function(){"use strict";var long = 42; long === 42}); true is true | |
| 1972 PASS "use strict";function g(long){ "use strict"; }; true is true | |
| 1973 PASS (function(){"use strict";function g(long){ "use strict"; }; true}); true is
true | |
| 1974 PASS "use strict";/long/.test(function g(long){ "use strict"; }) is true | |
| 1975 PASS (function(){"use strict";/long/.test(function g(long){ "use strict"; })});
true is true | |
| 1976 PASS "use strict";try{}catch(long){}; true is true | |
| 1977 PASS (function(){"use strict";try{}catch(long){}; true}); true is true | |
| 1978 PASS "use strict";function long(){ "use strict"; }; true is true | |
| 1979 PASS (function(){"use strict";function long(){ "use strict"; }; true}); true is
true | |
| 1980 PASS "use strict";({ "long": 42 }.long === 42) is true | |
| 1981 PASS (function(){"use strict";({ "long": 42 }.long === 42)}); true is true | |
| 1982 PASS "use strict";({ long: 42 }.long === 42) is true | |
| 1983 PASS (function(){"use strict";({ long: 42 }.long === 42)}); true is true | |
| 1984 PASS "use strict";({ get long(){}, set long(){}, parsedOkay: 42 }.parsedOkay ===
42) is true | |
| 1985 PASS (function(){"use strict";({ get long(){}, set long(){}, parsedOkay: 42 }.pa
rsedOkay === 42)}); true is true | |
| 1986 PASS var native; true is true | |
| 1987 PASS (function(){var native; true}); true is true | |
| 1988 PASS var native = 42; native === 42 is true | |
| 1989 PASS (function(){var native = 42; native === 42}); true is true | |
| 1990 PASS function g(native){ }; true is true | |
| 1991 PASS (function(){function g(native){ }; true}); true is true | |
| 1992 PASS /native/.test(function g(native){ }) is true | |
| 1993 PASS (function(){/native/.test(function g(native){ })}); true is true | |
| 1994 PASS try{}catch(native){}; true is true | |
| 1995 PASS (function(){try{}catch(native){}; true}); true is true | |
| 1996 PASS function native(){ }; true is true | |
| 1997 PASS (function(){function native(){ }; true}); true is true | |
| 1998 PASS ({ "native": 42 }.native === 42) is true | |
| 1999 PASS (function(){({ "native": 42 }.native === 42)}); true is true | |
| 2000 PASS ({ native: 42 }.native === 42) is true | |
| 2001 PASS (function(){({ native: 42 }.native === 42)}); true is true | |
| 2002 PASS ({ get native(){}, set native(){}, parsedOkay: 42 }.parsedOkay === 42) is t
rue | |
| 2003 PASS (function(){({ get native(){}, set native(){}, parsedOkay: 42 }.parsedOkay
=== 42)}); true is true | |
| 2004 PASS "use strict";var native; true is true | |
| 2005 PASS (function(){"use strict";var native; true}); true is true | |
| 2006 PASS "use strict";var native = 42; native === 42 is true | |
| 2007 PASS (function(){"use strict";var native = 42; native === 42}); true is true | |
| 2008 PASS "use strict";function g(native){ "use strict"; }; true is true | |
| 2009 PASS (function(){"use strict";function g(native){ "use strict"; }; true}); true
is true | |
| 2010 PASS "use strict";/native/.test(function g(native){ "use strict"; }) is true | |
| 2011 PASS (function(){"use strict";/native/.test(function g(native){ "use strict"; })
}); true is true | |
| 2012 PASS "use strict";try{}catch(native){}; true is true | |
| 2013 PASS (function(){"use strict";try{}catch(native){}; true}); true is true | |
| 2014 PASS "use strict";function native(){ "use strict"; }; true is true | |
| 2015 PASS (function(){"use strict";function native(){ "use strict"; }; true}); true i
s true | |
| 2016 PASS "use strict";({ "native": 42 }.native === 42) is true | |
| 2017 PASS (function(){"use strict";({ "native": 42 }.native === 42)}); true is true | |
| 2018 PASS "use strict";({ native: 42 }.native === 42) is true | |
| 2019 PASS (function(){"use strict";({ native: 42 }.native === 42)}); true is true | |
| 2020 PASS "use strict";({ get native(){}, set native(){}, parsedOkay: 42 }.parsedOkay
=== 42) is true | |
| 2021 PASS (function(){"use strict";({ get native(){}, set native(){}, parsedOkay: 42
}.parsedOkay === 42)}); true is true | |
| 2022 PASS var short; true is true | |
| 2023 PASS (function(){var short; true}); true is true | |
| 2024 PASS var short = 42; short === 42 is true | |
| 2025 PASS (function(){var short = 42; short === 42}); true is true | |
| 2026 PASS function g(short){ }; true is true | |
| 2027 PASS (function(){function g(short){ }; true}); true is true | |
| 2028 PASS /short/.test(function g(short){ }) is true | |
| 2029 PASS (function(){/short/.test(function g(short){ })}); true is true | |
| 2030 PASS try{}catch(short){}; true is true | |
| 2031 PASS (function(){try{}catch(short){}; true}); true is true | |
| 2032 PASS function short(){ }; true is true | |
| 2033 PASS (function(){function short(){ }; true}); true is true | |
| 2034 PASS ({ "short": 42 }.short === 42) is true | |
| 2035 PASS (function(){({ "short": 42 }.short === 42)}); true is true | |
| 2036 PASS ({ short: 42 }.short === 42) is true | |
| 2037 PASS (function(){({ short: 42 }.short === 42)}); true is true | |
| 2038 PASS ({ get short(){}, set short(){}, parsedOkay: 42 }.parsedOkay === 42) is tru
e | |
| 2039 PASS (function(){({ get short(){}, set short(){}, parsedOkay: 42 }.parsedOkay ==
= 42)}); true is true | |
| 2040 PASS "use strict";var short; true is true | |
| 2041 PASS (function(){"use strict";var short; true}); true is true | |
| 2042 PASS "use strict";var short = 42; short === 42 is true | |
| 2043 PASS (function(){"use strict";var short = 42; short === 42}); true is true | |
| 2044 PASS "use strict";function g(short){ "use strict"; }; true is true | |
| 2045 PASS (function(){"use strict";function g(short){ "use strict"; }; true}); true i
s true | |
| 2046 PASS "use strict";/short/.test(function g(short){ "use strict"; }) is true | |
| 2047 PASS (function(){"use strict";/short/.test(function g(short){ "use strict"; })})
; true is true | |
| 2048 PASS "use strict";try{}catch(short){}; true is true | |
| 2049 PASS (function(){"use strict";try{}catch(short){}; true}); true is true | |
| 2050 PASS "use strict";function short(){ "use strict"; }; true is true | |
| 2051 PASS (function(){"use strict";function short(){ "use strict"; }; true}); true is
true | |
| 2052 PASS "use strict";({ "short": 42 }.short === 42) is true | |
| 2053 PASS (function(){"use strict";({ "short": 42 }.short === 42)}); true is true | |
| 2054 PASS "use strict";({ short: 42 }.short === 42) is true | |
| 2055 PASS (function(){"use strict";({ short: 42 }.short === 42)}); true is true | |
| 2056 PASS "use strict";({ get short(){}, set short(){}, parsedOkay: 42 }.parsedOkay =
== 42) is true | |
| 2057 PASS (function(){"use strict";({ get short(){}, set short(){}, parsedOkay: 42 }.
parsedOkay === 42)}); true is true | |
| 2058 PASS var synchronized; true is true | |
| 2059 PASS (function(){var synchronized; true}); true is true | |
| 2060 PASS var synchronized = 42; synchronized === 42 is true | |
| 2061 PASS (function(){var synchronized = 42; synchronized === 42}); true is true | |
| 2062 PASS function g(synchronized){ }; true is true | |
| 2063 PASS (function(){function g(synchronized){ }; true}); true is true | |
| 2064 PASS /synchronized/.test(function g(synchronized){ }) is true | |
| 2065 PASS (function(){/synchronized/.test(function g(synchronized){ })}); true is tr
ue | |
| 2066 PASS try{}catch(synchronized){}; true is true | |
| 2067 PASS (function(){try{}catch(synchronized){}; true}); true is true | |
| 2068 PASS function synchronized(){ }; true is true | |
| 2069 PASS (function(){function synchronized(){ }; true}); true is true | |
| 2070 PASS ({ "synchronized": 42 }.synchronized === 42) is true | |
| 2071 PASS (function(){({ "synchronized": 42 }.synchronized === 42)}); true is true | |
| 2072 PASS ({ synchronized: 42 }.synchronized === 42) is true | |
| 2073 PASS (function(){({ synchronized: 42 }.synchronized === 42)}); true is true | |
| 2074 PASS ({ get synchronized(){}, set synchronized(){}, parsedOkay: 42 }.parsedOkay
=== 42) is true | |
| 2075 PASS (function(){({ get synchronized(){}, set synchronized(){}, parsedOkay: 42 }
.parsedOkay === 42)}); true is true | |
| 2076 PASS "use strict";var synchronized; true is true | |
| 2077 PASS (function(){"use strict";var synchronized; true}); true is true | |
| 2078 PASS "use strict";var synchronized = 42; synchronized === 42 is true | |
| 2079 PASS (function(){"use strict";var synchronized = 42; synchronized === 42}); true
is true | |
| 2080 PASS "use strict";function g(synchronized){ "use strict"; }; true is true | |
| 2081 PASS (function(){"use strict";function g(synchronized){ "use strict"; }; true});
true is true | |
| 2082 PASS "use strict";/synchronized/.test(function g(synchronized){ "use strict"; })
is true | |
| 2083 PASS (function(){"use strict";/synchronized/.test(function g(synchronized){ "use
strict"; })}); true is true | |
| 2084 PASS "use strict";try{}catch(synchronized){}; true is true | |
| 2085 PASS (function(){"use strict";try{}catch(synchronized){}; true}); true is true | |
| 2086 PASS "use strict";function synchronized(){ "use strict"; }; true is true | |
| 2087 PASS (function(){"use strict";function synchronized(){ "use strict"; }; true});
true is true | |
| 2088 PASS "use strict";({ "synchronized": 42 }.synchronized === 42) is true | |
| 2089 PASS (function(){"use strict";({ "synchronized": 42 }.synchronized === 42)}); tr
ue is true | |
| 2090 PASS "use strict";({ synchronized: 42 }.synchronized === 42) is true | |
| 2091 PASS (function(){"use strict";({ synchronized: 42 }.synchronized === 42)}); true
is true | |
| 2092 PASS "use strict";({ get synchronized(){}, set synchronized(){}, parsedOkay: 42
}.parsedOkay === 42) is true | |
| 2093 PASS (function(){"use strict";({ get synchronized(){}, set synchronized(){}, par
sedOkay: 42 }.parsedOkay === 42)}); true is true | |
| 2094 PASS var throws; true is true | |
| 2095 PASS (function(){var throws; true}); true is true | |
| 2096 PASS var throws = 42; throws === 42 is true | |
| 2097 PASS (function(){var throws = 42; throws === 42}); true is true | |
| 2098 PASS function g(throws){ }; true is true | |
| 2099 PASS (function(){function g(throws){ }; true}); true is true | |
| 2100 PASS /throws/.test(function g(throws){ }) is true | |
| 2101 PASS (function(){/throws/.test(function g(throws){ })}); true is true | |
| 2102 PASS try{}catch(throws){}; true is true | |
| 2103 PASS (function(){try{}catch(throws){}; true}); true is true | |
| 2104 PASS function throws(){ }; true is true | |
| 2105 PASS (function(){function throws(){ }; true}); true is true | |
| 2106 PASS ({ "throws": 42 }.throws === 42) is true | |
| 2107 PASS (function(){({ "throws": 42 }.throws === 42)}); true is true | |
| 2108 PASS ({ throws: 42 }.throws === 42) is true | |
| 2109 PASS (function(){({ throws: 42 }.throws === 42)}); true is true | |
| 2110 PASS ({ get throws(){}, set throws(){}, parsedOkay: 42 }.parsedOkay === 42) is t
rue | |
| 2111 PASS (function(){({ get throws(){}, set throws(){}, parsedOkay: 42 }.parsedOkay
=== 42)}); true is true | |
| 2112 PASS "use strict";var throws; true is true | |
| 2113 PASS (function(){"use strict";var throws; true}); true is true | |
| 2114 PASS "use strict";var throws = 42; throws === 42 is true | |
| 2115 PASS (function(){"use strict";var throws = 42; throws === 42}); true is true | |
| 2116 PASS "use strict";function g(throws){ "use strict"; }; true is true | |
| 2117 PASS (function(){"use strict";function g(throws){ "use strict"; }; true}); true
is true | |
| 2118 PASS "use strict";/throws/.test(function g(throws){ "use strict"; }) is true | |
| 2119 PASS (function(){"use strict";/throws/.test(function g(throws){ "use strict"; })
}); true is true | |
| 2120 PASS "use strict";try{}catch(throws){}; true is true | |
| 2121 PASS (function(){"use strict";try{}catch(throws){}; true}); true is true | |
| 2122 PASS "use strict";function throws(){ "use strict"; }; true is true | |
| 2123 PASS (function(){"use strict";function throws(){ "use strict"; }; true}); true i
s true | |
| 2124 PASS "use strict";({ "throws": 42 }.throws === 42) is true | |
| 2125 PASS (function(){"use strict";({ "throws": 42 }.throws === 42)}); true is true | |
| 2126 PASS "use strict";({ throws: 42 }.throws === 42) is true | |
| 2127 PASS (function(){"use strict";({ throws: 42 }.throws === 42)}); true is true | |
| 2128 PASS "use strict";({ get throws(){}, set throws(){}, parsedOkay: 42 }.parsedOkay
=== 42) is true | |
| 2129 PASS (function(){"use strict";({ get throws(){}, set throws(){}, parsedOkay: 42
}.parsedOkay === 42)}); true is true | |
| 2130 PASS var transient; true is true | |
| 2131 PASS (function(){var transient; true}); true is true | |
| 2132 PASS var transient = 42; transient === 42 is true | |
| 2133 PASS (function(){var transient = 42; transient === 42}); true is true | |
| 2134 PASS function g(transient){ }; true is true | |
| 2135 PASS (function(){function g(transient){ }; true}); true is true | |
| 2136 PASS /transient/.test(function g(transient){ }) is true | |
| 2137 PASS (function(){/transient/.test(function g(transient){ })}); true is true | |
| 2138 PASS try{}catch(transient){}; true is true | |
| 2139 PASS (function(){try{}catch(transient){}; true}); true is true | |
| 2140 PASS function transient(){ }; true is true | |
| 2141 PASS (function(){function transient(){ }; true}); true is true | |
| 2142 PASS ({ "transient": 42 }.transient === 42) is true | |
| 2143 PASS (function(){({ "transient": 42 }.transient === 42)}); true is true | |
| 2144 PASS ({ transient: 42 }.transient === 42) is true | |
| 2145 PASS (function(){({ transient: 42 }.transient === 42)}); true is true | |
| 2146 PASS ({ get transient(){}, set transient(){}, parsedOkay: 42 }.parsedOkay === 42
) is true | |
| 2147 PASS (function(){({ get transient(){}, set transient(){}, parsedOkay: 42 }.parse
dOkay === 42)}); true is true | |
| 2148 PASS "use strict";var transient; true is true | |
| 2149 PASS (function(){"use strict";var transient; true}); true is true | |
| 2150 PASS "use strict";var transient = 42; transient === 42 is true | |
| 2151 PASS (function(){"use strict";var transient = 42; transient === 42}); true is tr
ue | |
| 2152 PASS "use strict";function g(transient){ "use strict"; }; true is true | |
| 2153 PASS (function(){"use strict";function g(transient){ "use strict"; }; true}); tr
ue is true | |
| 2154 PASS "use strict";/transient/.test(function g(transient){ "use strict"; }) is tr
ue | |
| 2155 PASS (function(){"use strict";/transient/.test(function g(transient){ "use stric
t"; })}); true is true | |
| 2156 PASS "use strict";try{}catch(transient){}; true is true | |
| 2157 PASS (function(){"use strict";try{}catch(transient){}; true}); true is true | |
| 2158 PASS "use strict";function transient(){ "use strict"; }; true is true | |
| 2159 PASS (function(){"use strict";function transient(){ "use strict"; }; true}); tru
e is true | |
| 2160 PASS "use strict";({ "transient": 42 }.transient === 42) is true | |
| 2161 PASS (function(){"use strict";({ "transient": 42 }.transient === 42)}); true is
true | |
| 2162 PASS "use strict";({ transient: 42 }.transient === 42) is true | |
| 2163 PASS (function(){"use strict";({ transient: 42 }.transient === 42)}); true is tr
ue | |
| 2164 PASS "use strict";({ get transient(){}, set transient(){}, parsedOkay: 42 }.pars
edOkay === 42) is true | |
| 2165 PASS (function(){"use strict";({ get transient(){}, set transient(){}, parsedOka
y: 42 }.parsedOkay === 42)}); true is true | |
| 2166 PASS var volatile; true is true | |
| 2167 PASS (function(){var volatile; true}); true is true | |
| 2168 PASS var volatile = 42; volatile === 42 is true | |
| 2169 PASS (function(){var volatile = 42; volatile === 42}); true is true | |
| 2170 PASS function g(volatile){ }; true is true | |
| 2171 PASS (function(){function g(volatile){ }; true}); true is true | |
| 2172 PASS /volatile/.test(function g(volatile){ }) is true | |
| 2173 PASS (function(){/volatile/.test(function g(volatile){ })}); true is true | |
| 2174 PASS try{}catch(volatile){}; true is true | |
| 2175 PASS (function(){try{}catch(volatile){}; true}); true is true | |
| 2176 PASS function volatile(){ }; true is true | |
| 2177 PASS (function(){function volatile(){ }; true}); true is true | |
| 2178 PASS ({ "volatile": 42 }.volatile === 42) is true | |
| 2179 PASS (function(){({ "volatile": 42 }.volatile === 42)}); true is true | |
| 2180 PASS ({ volatile: 42 }.volatile === 42) is true | |
| 2181 PASS (function(){({ volatile: 42 }.volatile === 42)}); true is true | |
| 2182 PASS ({ get volatile(){}, set volatile(){}, parsedOkay: 42 }.parsedOkay === 42)
is true | |
| 2183 PASS (function(){({ get volatile(){}, set volatile(){}, parsedOkay: 42 }.parsedO
kay === 42)}); true is true | |
| 2184 PASS "use strict";var volatile; true is true | |
| 2185 PASS (function(){"use strict";var volatile; true}); true is true | |
| 2186 PASS "use strict";var volatile = 42; volatile === 42 is true | |
| 2187 PASS (function(){"use strict";var volatile = 42; volatile === 42}); true is true | |
| 2188 PASS "use strict";function g(volatile){ "use strict"; }; true is true | |
| 2189 PASS (function(){"use strict";function g(volatile){ "use strict"; }; true}); tru
e is true | |
| 2190 PASS "use strict";/volatile/.test(function g(volatile){ "use strict"; }) is true | |
| 2191 PASS (function(){"use strict";/volatile/.test(function g(volatile){ "use strict"
; })}); true is true | |
| 2192 PASS "use strict";try{}catch(volatile){}; true is true | |
| 2193 PASS (function(){"use strict";try{}catch(volatile){}; true}); true is true | |
| 2194 PASS "use strict";function volatile(){ "use strict"; }; true is true | |
| 2195 PASS (function(){"use strict";function volatile(){ "use strict"; }; true}); true
is true | |
| 2196 PASS "use strict";({ "volatile": 42 }.volatile === 42) is true | |
| 2197 PASS (function(){"use strict";({ "volatile": 42 }.volatile === 42)}); true is tr
ue | |
| 2198 PASS "use strict";({ volatile: 42 }.volatile === 42) is true | |
| 2199 PASS (function(){"use strict";({ volatile: 42 }.volatile === 42)}); true is true | |
| 2200 PASS "use strict";({ get volatile(){}, set volatile(){}, parsedOkay: 42 }.parsed
Okay === 42) is true | |
| 2201 PASS (function(){"use strict";({ get volatile(){}, set volatile(){}, parsedOkay:
42 }.parsedOkay === 42)}); true is true | |
| 2202 PASS window.yield === 42 is true | |
| 2203 PASS successfullyParsed is true | |
| 2204 | |
| 2205 TEST COMPLETE | |
| 2206 | |
| OLD | NEW |