sbin/res/jsdoc/app/test/static_this.js
author hamidouk
Mon, 06 Feb 2012 16:04:46 +0100
branchpopcorn-port
changeset 783 591b117c19ca
parent 520 fe008e95a716
permissions -rw-r--r--
be more picky about what we get.

/** the parent */
var box = {};

/** @namespace */
box.holder = {}

box.holder.foo = function() {
	/** the counter */
	this.counter = 1;
}

box.holder.foo();
print(box.holder.counter);