Sha256: d4996b6d6ad856991007ce9f30a9201cbf8960431329b190b679b70e6f4f2eae

Contents?: true

Size: 602 Bytes

Versions: 132

Compression:

Stored size: 602 Bytes

Contents

/** an anonymous constructor executed inline */
a = new function() {
	/** a.b*/
    this.b = 1;
    /** a.f */
    this.f = function() {
    	/** a.c */
    	this.c = 2;
    }
}


/**
	named function executed inline
*/
bar1 = function Zoola1() {
	/** property of global */
	this.g = 1;
}();

/**
	named constructor executed inline
*/
bar2 = new function Zoola2() {
	/** property of bar */
	this.p = 1;
};

/** module pattern */
module = (function () {
	/** won't appear in documentation */
	var priv = 1;
	
	/** @scope module */
	return {
		/** will appear as a property of module */
		pub: 1
	}
})();

Version data entries

132 entries across 131 versions & 14 rubygems

Version Path
hquery-patient-api-1.1.1 doc/jsdoc-toolkit/app/test/functions_anon.js
hquery-patient-api-1.1.0 doc/jsdoc-toolkit/app/test/functions_anon.js
xcodebuild-helper-1.2.5 externals/ios-sim-master/node_modules/JSV/jsdoc-toolkit/app/test/functions_anon.js
xcodebuild-helper-1.2.3 externals/ios-sim-master/node_modules/JSV/jsdoc-toolkit/app/test/functions_anon.js
quentonc-jsdoc_helper-0.0.2 ext/jsdoc-toolkit/app/test/functions_anon.js
quentonc-jsdoc_helper-0.0.2 test/ext/jsdoc-toolkit/app/test/functions_anon.js
sproutit-sproutcore-1.0.20090721145236 vendor/jsdoc/app/test/functions_anon.js
sproutit-sproutcore-1.0.20090721145251 vendor/jsdoc/app/test/functions_anon.js
sproutit-sproutcore-1.0.20090721145280 vendor/jsdoc/app/test/functions_anon.js
sproutit-sproutcore-1.0.20090721145281 vendor/jsdoc/app/test/functions_anon.js
sproutit-sproutcore-1.0.20090721145282 vendor/jsdoc/app/test/functions_anon.js
sproutit-sproutcore-1.0.20090721145285 vendor/jsdoc/app/test/functions_anon.js
sproutit-sproutcore-1.0.203 vendor/jsdoc/app/test/functions_anon.js
hquery-patient-api-1.0.4 doc/jsdoc-toolkit/app/test/functions_anon.js
hquery-patient-api-1.0.3 doc/jsdoc-toolkit/app/test/functions_anon.js
hquery-patient-api-1.0.2 doc/jsdoc-toolkit/app/test/functions_anon.js
hquery-patient-api-1.0.1 doc/jsdoc-toolkit/app/test/functions_anon.js
jsc3d-rails-1.0 vendor/assets/javascripts/tools/doc_generator/app/test/functions_anon.js
hquery-patient-api-1.0.0 doc/jsdoc-toolkit/app/test/functions_anon.js
hquery-patient-api-0.3.0 doc/jsdoc-toolkit/app/test/functions_anon.js