mirror of
https://github.com/github/codeql.git
synced 2025-12-17 09:13:20 +01:00
13 lines
152 B
JavaScript
13 lines
152 B
JavaScript
goog.module('enumuse');
|
|
|
|
let fooBar = goog.require('foo.bar');
|
|
|
|
fooBar.x.y.z;
|
|
|
|
function infinite() {
|
|
let z = fooBar;
|
|
while (z) {
|
|
z = z.x;
|
|
}
|
|
}
|