代码搜索:JsDoc
找到约 54 项符合「JsDoc」的源代码
代码结果 54
www.eeworm.com/read/332387/3398880
js symbollink.js
JSDOC.PluginManager.registerPlugin(
"JSDOC.symbolLink",
{
onSymbolLink: function(link) {
// modify link.linkPath
// or link.linkText here
}
}
);
www.eeworm.com/read/332387/3398878
js frameworkprototype.js
JSDOC.PluginManager.registerPlugin(
"JSDOC.frameworkPrototype",
{
onPrototypeClassCreate: function(classCreator) {
var desc = "";
if (classCreator.comment) {
desc = classCreator.comment;
www.eeworm.com/read/344727/3204515
properties javascript-report-maven-plugin_fr.properties
jsdoc.name = jsDoc
jsdoc.description = documentation technique javascript
jslint.name = jsLint
jslint.description = rapport de v\u00e9rification javascript
jslint.no-error = Aucune erreur identifi\u0
www.eeworm.com/read/332387/3398864
js doccomment.js
if (typeof JSDOC == "undefined") JSDOC = {};
/**
Create a new DocComment. This takes a raw documentation comment,
and wraps it in useful accessors.
@class Represents a documentation comment object
www.eeworm.com/read/332387/3398877
js commentsrcjson.js
JSDOC.PluginManager.registerPlugin(
"JSDOC.commentSrcJson",
{
onDocCommentSrc: function(commentSrc) {
var json;
if (/^\s*@json\b/.test(commentSrc)) {
commentSrc = commentSrc.replace("@js
www.eeworm.com/read/332387/3398874
js functioncall.js
JSDOC.PluginManager.registerPlugin(
"JSDOC.functionCall",
{
onFunctionCall: function(functionCall) {
if (functionCall.name == "dojo.define" && functionCall.arg1) {
functionCall.doc = "/** @
www.eeworm.com/read/332387/3398859
js textstream.js
/**
@constructor
*/
JSDOC.TextStream = function(text) {
if (typeof(text) == "undefined") text = "";
text = ""+text;
this.text = text;
this.cursor = 0;
}
JSDOC.TextStream.prototype.look = functi
www.eeworm.com/read/332387/3398875
js publishsrchilite.js
JSDOC.PluginManager.registerPlugin(
"JSDOC.publishSrcHilite",
{
onPublishSrc: function(src) {
if (src.path in JsHilite.cache) {
return; // already generated src code
}
else JsHilite.c
www.eeworm.com/read/332387/3398879
js tagparamconfig.js
JSDOC.PluginManager.registerPlugin(
"JSDOC.tagParamConfig",
{
onDocCommentTags: function(comment) {
var currentParam = null;
var tags = comment.tags;
for (var i = 0, l = tags.length; i <
www.eeworm.com/read/332387/3398862
js util.js
/**
* @namespace
* @deprecated Use {@link FilePath} instead.
*/
JSDOC.Util = {
}
/**
* @deprecated Use {@link FilePath.fileName} instead.
*/
JSDOC.Util.fileName = function(path) {
LOG.warn("JSD