PrivateBin/jsdoc_toolkit-2.3.3-beta/app/plugins/functionCall.js

10 lines
263 B
JavaScript
Raw Normal View History

2010-05-27 06:34:42 +08:00
JSDOC.PluginManager.registerPlugin(
"JSDOC.functionCall",
{
onFunctionCall: function(functionCall) {
if (functionCall.name == "dojo.define" && functionCall.arg1) {
functionCall.doc = "/** @lends "+eval(functionCall.arg1)+".prototype */";
}
}
}
);