зеркало из https://github.com/github/codeql.git
JS: add test with undeclared nested access
This commit is contained in:
Родитель
a9f8a53dac
Коммит
2f6496f6bd
|
@ -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;
|
||||
}
|
||||
}
|
Загрузка…
Ссылка в новой задаче