aboutsummaryrefslogtreecommitdiff
path: root/tools/jsdoc-toolkit-2.4.0/app/test/variable_redefine.js
blob: 2c07da09a94f851bfe9710103cb468de4fcb4135 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
/** @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
	}
}