Welcome to mirror list, hosted at ThFree Co, Russian Federation.

variable_redefine.js « test « app « jsdoc-toolkit « lib « tests - github.com/matomo-org/matomo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
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
	}
}