sbin/res/jsdoc/app/test/variable_redefine.js
author hamidouk
Fri, 20 Jan 2012 17:26:55 +0100
branchpopcorn-port
changeset 690 b7ac9cfefda4
parent 520 fe008e95a716
permissions -rw-r--r--
WIP - nearly fixed all the bugs with the sliceWidget.js. I still have got to replicate the code for the right handle.

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