зеркало из https://github.com/mozilla/gecko-dev.git
Bug 1587574 - Add test for fieldInitializers lookup r=jorendorff
Differential Revision: https://phabricator.services.mozilla.com/D48756 --HG-- extra : moz-landing-system : lando
This commit is contained in:
Родитель
a8b941db0e
Коммит
194b574fae
|
@ -0,0 +1,14 @@
|
|||
// Don't Crash
|
||||
var testStr = `
|
||||
class C extends Object {
|
||||
constructor() {
|
||||
eval(\`a => b => {
|
||||
class Q { f = 1; } // inhibits lazy parsing
|
||||
super();
|
||||
}\`);
|
||||
}
|
||||
}
|
||||
new C;`
|
||||
assertEq(raisesException(ReferenceError)(testStr), true);
|
||||
|
||||
reportCompare(true, true);
|
Загрузка…
Ссылка в новой задаче