sbin/res/jsdoc/app/test/variable_redefine.js
author durandn
Tue, 22 Sep 2015 17:07:58 +0200
changeset 1062 f8adaa2caecb
parent 520 fe008e95a716
permissions -rw-r--r--
CurrentSegmentInfobox: fixed bug where editing a segment would not update the source correctly and mess up other widgets.

/** @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
	}
}