1 JSDOC
.PluginManager
.registerPlugin(
2 "JSDOC.commentSrcJson",
4 onDocCommentSrc
: function(comment
) {
6 if (/^\s*@json\b/.test(comment
)) {
7 comment
.src
= new String(comment
.src
).replace("@json", "");
9 eval("json = "+comment
.src
);
13 // todo handle cases where tag is an object
14 tagged
+= "@"+i
+" "+tag
+"\n";