jsdoc/test/cases/globaltag.js
2011-01-14 21:21:45 +00:00

16 lines
196 B
JavaScript

/**
@global
@constructor
*/
window.Bar = new Function('', a, b, c);
(function() {
/** @global */
var foo;
foo = 'hello foo';
this.foo = foo;
}).apply(window);