mirror of
https://github.com/github/codeql.git
synced 2025-12-17 17:23:36 +01:00
16 lines
201 B
JavaScript
16 lines
201 B
JavaScript
function test() {
|
|
let x = ns.very.long.namespace;
|
|
|
|
/**
|
|
* @param {x.Foo} foo
|
|
*/
|
|
function f(foo) {}
|
|
}
|
|
|
|
(function(iife) {
|
|
/**
|
|
* @param {iife.Foo} foo
|
|
*/
|
|
function f(foo) {}
|
|
})(IIFE);
|