sbin/res/jsdoc/app/plugins/functionCall.js
branchjsdoc
changeset 520 fe008e95a716
equal deleted inserted replaced
519:46e21d060650 520:fe008e95a716
       
     1 JSDOC.PluginManager.registerPlugin(
       
     2 	"JSDOC.functionCall",
       
     3 	{
       
     4 		onFunctionCall: function(functionCall) {
       
     5 			if (functionCall.name == "dojo.define" && functionCall.arg1) {
       
     6 				functionCall.doc = "/** @lends "+eval(functionCall.arg1)+".prototype */";
       
     7 			}
       
     8 		}
       
     9 	}
       
    10 );