/trunk/jsdoc-toolkit/app/plugins/functionCall.js
http://jsdoc-toolkit.googlecode.com/ · JavaScript · 10 lines · 10 code · 0 blank · 0 comment · 3 complexity · 7141a4e19c3b8d9b6a1fc400bac47f67 MD5 · raw file
- JSDOC.PluginManager.registerPlugin(
- "JSDOC.functionCall",
- {
- onFunctionCall: function(functionCall) {
- if (functionCall.name == "dojo.define" && functionCall.arg1) {
- functionCall.doc = "/** @lends "+eval(functionCall.arg1)+".prototype */";
- }
- }
- }
- );