sbin/res/jsdoc/app/plugins/functionCall.js
author veltr
Tue, 01 Oct 2013 16:16:35 +0200
changeset 1014 96ea47146c66
parent 520 fe008e95a716
permissions -rw-r--r--
Retrieved exotic serializers from hashcut

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