hz-zhhq-web/node_modules/JSV/jsdoc-toolkit/app/test/variable_redefine.js

14 lines
187 B
JavaScript
Raw Normal View History

2025-02-25 13:43:48 +08:00
/** @constructor */
function Foo() {
var bar = 1;
bar = 2; // redefining a private
this.baz = 1;
baz = 2; // global
/** a private */
var blap = {
/** in here */
tada: 1
}
}