sbin/res/jsdoc/app/plugins/functionCall.js
author veltr
Fri, 13 Apr 2012 18:08:19 +0200
branchnew-model
changeset 860 7fd843e0dc4e
parent 520 fe008e95a716
permissions -rw-r--r--
Implemented serialize functions

JSDOC.PluginManager.registerPlugin(
	"JSDOC.functionCall",
	{
		onFunctionCall: function(functionCall) {
			if (functionCall.name == "dojo.define" && functionCall.arg1) {
				functionCall.doc = "/** @lends "+eval(functionCall.arg1)+".prototype */";
			}
		}
	}
);