代码搜索:JsDoc
找到约 54 项符合「JsDoc」的源代码
代码结果 54
www.eeworm.com/read/332387/3398861
js walker.js
if (typeof JSDOC == "undefined") JSDOC = {};
/** @constructor */
JSDOC.Walker = function(/**JSDOC.TokenStream*/ts) {
this.init();
if (typeof ts != "undefined") {
this.walk(ts);
}
}
JSDOC.Walker
www.eeworm.com/read/332387/3398863
js tokenreader.js
if (typeof JSDOC == "undefined") JSDOC = {};
/**
@class Search a {@link JSDOC.TextStream} for language tokens.
*/
JSDOC.TokenReader = function() {
this.keepDocs = true;
this.keepWhite = false;
th
www.eeworm.com/read/332387/3398866
js token.js
if (typeof JSDOC == "undefined") JSDOC = {};
/**
@constructor
*/
JSDOC.Token = function(data, type, name) {
this.data = data;
this.type = type;
this.name = name;
}
JSDOC.Token.prototype.toString
www.eeworm.com/read/332387/3398869
js lang.js
/**
@namespace
*/
JSDOC.Lang = {
}
JSDOC.Lang.isBuiltin = function(name) {
return (JSDOC.Lang.isBuiltin.coreObjects.indexOf(name) > -1);
}
JSDOC.Lang.isBuiltin.coreObjects = ['_global_', 'Array', '
www.eeworm.com/read/332387/3398871
js tokenstream.js
if (typeof JSDOC == "undefined") JSDOC = {};
/**
@constructor
*/
JSDOC.TokenStream = function(tokens) {
this.tokens = (tokens || []);
this.rewind();
}
/**
@constructor
@private
*/
function Void
www.eeworm.com/read/332387/3398867
js doctag.js
if (typeof JSDOC == "undefined") JSDOC = {};
/**
@constructor
*/
JSDOC.DocTag = function(src) {
this.init();
if (typeof src != "undefined") {
this.parse(src);
}
}
/**
Create and initialize t
www.eeworm.com/read/332387/3398870
js symbol.js
if (typeof JSDOC == "undefined") JSDOC = {};
/**
Create a new Symbol.
@class Represents a symbol in the source code.
*/
JSDOC.Symbol = function() {
this.init();
if (arguments.length) this.popula
www.eeworm.com/read/344727/3204516
properties javascript-report-maven-plugin.properties
jsdoc.name = jsDoc
jsdoc.description = Javascript technical documentation
jslint.name = jsLint
jslint.description = Javascript verifier report
jslint.no-error = No error found.
www.eeworm.com/read/332387/3398853
js publish.js
function publish(symbolSet) {
publish.conf = { // trailing slash expected for dirs
ext: ".html",
outDir: JSDOC.opt.d || SYS.pwd+"../out/jsdoc/",
templatesDir: SYS.pwd+"../templates/jsdoc/",
www.eeworm.com/read/332387/3398892
js testrun.js
/**
* @fileOverview
* @name JsTestrun
* @author Michael Mathews micmath@gmail.com
* @url $HeadURL: https://jsdoc-toolkit.googlecode.com/svn/tags/jsdoc_toolkit-2.0.1/jsdoc-toolkit/app/frame/Testrun