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:
Matthew Gaudet 2019-11-07 18:13:48 +00:00
Родитель a8b941db0e
Коммит 194b574fae
1 изменённых файлов: 14 добавлений и 0 удалений

Просмотреть файл

@ -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);