JS: add test with undeclared nested access

This commit is contained in:
Asger F 2019-02-25 12:27:36 +00:00
Родитель a9f8a53dac
Коммит 2f6496f6bd
3 изменённых файлов: 15 добавлений и 0 удалений

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

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

@ -0,0 +1,3 @@
import javascript
select Closure::moduleImport("foo.bar.x.y.z")

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

@ -0,0 +1,12 @@
goog.module('enumuse');
let fooBar = goog.require('foo.bar');
fooBar.x.y.z;
function infinite() {
let z = fooBar;
while (z) {
z = z.x;
}
}