can generate jsdoc; private methods marked as such
[dygraphs.git] / jsdoc-toolkit / app / plugins / functionCall.js
CommitLineData
629a09ae
DV
1JSDOC.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);