repo.or.cz
/
gecko.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
history
|
raw
|
HEAD
Backed out changeset 2450366cf7ca (bug 1891629) for causing win msix mochitest failures
[gecko.git]
/
js
/
src
/
tests
/
non262
/
class
/
derivedConstructorTDZExplicitThis.js
blob
4a4922d57e6d6ae6f724ae5701f1a1a46c938c1d
1
class foo extends null {
2
constructor() {
3
this;
4
assertEq(false, true);
5
}
6
}
7
8
for (let i = 0; i < 1100; i++)
9
assertThrownErrorContains(() => new foo(), "this");
10
11
if (typeof reportCompare === 'function')
12
reportCompare(0,0,"OK");