JSDoc is a syntax for adding inline API documentation to JavaScript source code. This is distinct from the various tools that parse and manipulate code that follows the JSDoc syntax.

learn more… | top users | synonyms

0
votes
0answers
7 views

How can I document a type in webstorm using just jsdoc?

When I write the following code, the annotator tells me that BrowserSelector is not defined in the second typedef: /** * @typedef {{name: String, minVer: Number, maxVer: Number}} BrowserSelector */ ...
-1
votes
1answer
37 views

Make @property private

Is there any way to make a @property private? /** * * @property {Object} shouldBePrivate but how? * */ ... I'm using jsdoc3 I want to be able to generate my documentation two times, one with ...
0
votes
1answer
49 views

Polymorphic function documentation in Google Apps Script

I want my library function to work in two ways, depending on whether the second parameter was provided. For example: function sheet_to_dict(a, b) { var array = ( b ? ...
0
votes
0answers
23 views

Is there any ways to tune JSDoc with markdown plugin gfm to highlight github makrdown syntax right?

Is there any ways to tune JSDoc with markdown plugin gfm to highlight github makrdown syntax? Example For example here is original highlighting: https://github.com/darlingjs/darlingjs and gfm ...
0
votes
2answers
56 views

How do I JSDoc @param in webstorm a callback handler's parameters?

This question really can extend to any anonymous function's parameters. This does not work: socket.on( "data", /** * @param request {Object} * @param request.code {Number} * ...
0
votes
0answers
27 views

JSDoc 3 template changes

How can I change the default template for JSDoc? Specifically - i don't want the source code line number to be generated in the documentation, how i can avoid that? Further i want to know how i can ...
0
votes
1answer
29 views

JSDoc3 how to let it know a variable is a reference to a Class prototype

I've got the following javascript class setup; /** * @class * @constructor */ var Klass = function() { ... } var p = Klass.prototype; /** * Set custom options * @param {object} options - ...
0
votes
0answers
20 views

Proper ordering of documentation tags

Is there a "correct" order in which to write tags when documenting javascript using jsdoc? The site has examples like: /** * Represents a book. * @constructor * @param {string} title - The title ...
0
votes
0answers
16 views

Tool for checking JS doc

Is there any tool or script that can check and compare your JS code with the generated documentation. Check if any parameters or return value types are specifed inncorrect? I've generated my JS doc ...
2
votes
1answer
65 views

How can I make Visual Studio display inline documentation for built-in JavaScript?

In Visual Studio 2010 and 2012, the JavaScript editor supports displaying inline documentation for JavaScript things such as functions. However, Visual Studio didn't appear to ship with this ...
0
votes
1answer
48 views

Document generic type parameters in JSDOC

In JSDoc there exists the possibility to document the exact types of array contents like this: /** @param {Array.<MyClass>} myClasses An array of MyClass objects. */ ...
0
votes
1answer
41 views

Define parameters in JSDoc for inline anonymous functions

If I define the function as a variable object, then PhpStorm will show the auto-complete for the item parameter. /** * @param {Rules.FolderGroupItem} item **/ var ...
0
votes
1answer
26 views

Using JSDoc on ECMAScript with extended syntax

Can anyone tell me if it's possible to use JSDoc on JavaScript (more like ECMAScript) with some additional features? For example, I have code like this: function(a : String, b : Number) : Object { ...
0
votes
0answers
16 views

How to Document following function in JSDoc JS-Toolkit

*How to Document following function in JSDoc JS-Toolkit * I want to document try and help method in this main function but i did not figure it out how to do that. /** Sample doc * @class * ...
0
votes
1answer
18 views

Why is JSDoc clubbing doc comments across all JS modules in one file?

I have multiple JS files (AMD modules) in a directory. When I run jsdoc command, it generates an index.html file that has doc comments for all the methods across all the files. Why is it clubbing all ...
1
vote
1answer
126 views

How to comment a JS module pattern class using JSDoc3?

That's the way I actually do this but the private methods and propertys are not visable after I generate the Documentation. have I done something wrong? Incidentally, everything else works fine. I ...
5
votes
2answers
99 views

How to easily create Github friendly markdown for documented JavaScript functions?

I want to be able to take JSDoc comments like this anywhere in JavaScript source (even nested down several layers of functions, in a module or even anonymous functions): /** * Used to do some ...
1
vote
1answer
43 views

JSDoc - The “@name” tagged constructor don't document the properties of this

I don't found the good way to document the properties in the constructor function if I use the @name tag for give a name to my class: /** * @name ClassName * @constructor */ function noname (){ ...
2
votes
1answer
39 views

What's the correct casing to use for jsDoc comments?

I've recently started using jsdoc comments for documenting our javascript code, however I'm finding conflicting examples of the usage of the @param tag. See ...
0
votes
2answers
289 views

jsDoc intellisense for Visual Studio 2012

Web Essentials for Visual Studio 2012 says it has support for jsDoc intellisense, but I can't seen any options for enabling it, and it doesn't appear to do anything. Any ideas how to turn it on? or ...
1
vote
1answer
202 views

Tutorial and/or good example to learn and build jsdoc templates

So I am brand new to jsdoc and i gotta quickly build a jsdoc template to output documentation in XML format. I have basic understanding of tags involved in jsdoc. But, right now I want to build a ...
0
votes
0answers
84 views

Document properties without a value in JSDoc3

I'm using Jsdoc3 to document my JavaScript project. I'm also using the Google Closure Compiler and Google Closure Library. Some of the properties on my classes start out as undefined, and are later ...
0
votes
0answers
66 views

JSDoc 3 namespace trouble

This code /** * * My namespace * * @namespace * * @type {Object} */ myNamespace = { }; /** * My constructor * * @constructor */ myNamespace.MyConstructor = function () { }; /** * My ...
3
votes
1answer
106 views

How do I document AMD + Backbone project with JSDoc3

I have a Backbone boilerplate based project, that I want to document with recent jdoc-toolkit Though I can't get it to generate anything but empty _global class Code sample: /** * This is a root ...
0
votes
1answer
75 views

Jsdoc3 Documenting Closures

I'm trying to document functionality within a class called User that is located within a closure, however jsdoc3 doesn't seem to be documented? Do the comments look wrong? /** @class User ...
0
votes
1answer
157 views

How do you attach JSdoc in Eclipse so that I can have autocomplete for a personal library

I have a JavaScript library that I am working on currently. I have structured it into lots of files and I use the module approach to define each 'module'. var ns = ...
1
vote
1answer
59 views

How to add and use a tag on jsdoc?

I am trying to add a customTag to jsdoc. I have created a file in the plugins directory like this: method.js exports.defineTags = function(dictionary) { dictionary.defineTag("methodHttp", { ...
0
votes
1answer
73 views

Writing jsdoc documentation on methods inside a class

I am writing some libraries in Google Apps Script and I am trying to document them. I have written some classes in the format below, and the comments of methods inside the class don't show up in the ...
0
votes
0answers
17 views

Using JSDoc on non-js files

For various reasons my main namespace is defined in a script block inside an .aspx file. JSDoc understandably doesn't get this. Is there any way to pass the namespace to JSDoc in one of my js files?
0
votes
0answers
36 views

How do I document functions that have multiple parameter order options in JsDoc?

I have a function for removing event handlers from an EventEmitter class. It looks something like this: EventEmitter.prototype.remove_handler = function(event_name, handler) { if(arguments.length ...
0
votes
0answers
22 views

How do I document that a function allows an arbitrary amount of arguments in JSDoc?

I have a few functions that accept an arbitrary amount of arguments. I've checked out the JSDoc @Param wiki but it doesn't mention the issue. How would you, for instance, document a function like ...
0
votes
1answer
82 views

Why does JSDoc throw a TypeError while processing a valid file

I have a dojo class with some JSDoc tags in it. The JavaScript runs fine, without errors, so it's certainly a valid file. The class is here: http://jsfiddle.net/8JpCR/ When I try to run JSDoc on it, ...
0
votes
1answer
48 views

How to specify an array of objects as a parameter or return value in JSDoc?

In JSDoc, the best documentation I can find shows to use the following if you have an array of a specific type (such as an array of strings) as: /** * @param {Array.<string>} myStrings All my ...
0
votes
0answers
91 views

eclipse juno jsdoc not working

I installed eclipse classic with and installed the JSDT plugin JSDOC not working /** @type {string} */ var test; I get that test in "any" and not a string. But this format does work /** @type ...
1
vote
0answers
47 views

jsdoc tags within html files

after building a web app, I tried out the jsdoc-toolkit. In a config file I added my index.html to the list of source files and also used the x-parameter to make the toolkit aware of the html file. ...
1
vote
1answer
97 views

jsdoc valid param types

Is there a list somewhere of valid types for param tags for jsdoc? For example, @param {type} myParam Some parameter description I know that things like number and String are valid, but what if I ...
3
votes
3answers
62 views

Is this an ordinay function, a constructor or neither?

I use to enjoy using js. Now I am just frustrated. I am trying to jsDoc a large chunk of code that was purchased by my boss. The author did not provide an API so I am going to create one using jsDoc. ...
1
vote
0answers
73 views

JsDoc Tool - Class vs Constructor

I am using JSDoc-toolkit to generate the API document for my JScript files but it doesn't generate correctly. // test.js var TestOperations = { f1 : function(){ ..... }, f2 : function()( ...
1
vote
1answer
572 views

Getting Better Output from JSDoc3

I'm having some trouble getting started with JSDoc3. Most importantly, the @params don't show up! Here's my test source: /** * Testing JsDoc3. * Why isn't this working `better`? */ function ...
4
votes
1answer
294 views

JSDoc within AngularJS services

I'm creating an AngularJS service to validate form inputs and I can't for the life of me figure out how to use JSDoc3 to create reasonable documentation. Ideally I need to export the documentation ...
0
votes
0answers
82 views

some JSDoc questions regarding tags

My library got the Javascript part that I'm thriving to properly add JSdocs to it. Basically, a function that returns an object that have multiple functions inside is making me confused. Take this ...
1
vote
1answer
154 views

How can I get jsdoc to mark my param as a jquery object?

I'm attempting to thoroughly comment my javascript and I'm using JSDoc. I have a function that consumes a jquery object and I'd like to mark the parameter as such. Currently I have this: /** * ...
0
votes
2answers
114 views

How to document a type returned by a function (not constructor), and its methods

I'm using JsDoc3 and the Closure Compiler. I use a JsDoc template which outputs JSON for me to make HTML from it with a custom script. I have a function which returns a custom class (but I don't ...
3
votes
2answers
87 views

How to document callbacks using JSDoc?

Given a Javascript function that takes callback functions as parameters: var myFunction = function(onSuccess, onFailure) {...} How do I document onSuccess's return type and arguments?
0
votes
1answer
146 views

Document object inside self executing function using JSDoc

So I have several object definitions that work like this: (function () { var parent= constructors.Parent.prototype; /** * Creates an instance of Child. * * @constructor * @augments Parent * ...
1
vote
1answer
134 views

How to use JSDoc to tell jQuery is included?

I just finished my JS code. Now I moved it into its own file, and now PHPStorm tells me that there is no variable called $. How do I fix this? (Can JSDoc solve it?)
0
votes
0answers
123 views

Aptana Studio 2 Color Theme with JSDoc support?

I just installed some dark color schemes for my Aptana Studio 2. Unfortunately they do not support colors for JSDoc blocks (please see screenshot attached). Does anybody know how I can adapt the ...
4
votes
1answer
123 views

How to specify resolution and rejection type of the promise in JSDoc?

I have some code that returns a promise object, e.g. using Q library for NodeJS. var Q = require('q'); /** * @returns ??? */ function task(err) { return err? Q.reject(new Error('Some error')) ...
0
votes
1answer
52 views

Is it possible to stop IntelliJ adding @private in jsdoc comments?

If I have a private function in a javascript file: Class.prototype._method = function () { // do stuff }; When I start a doc block IntelliJ will helpfully stub it out, so I get: /** * * ...
2
votes
1answer
337 views

@override a method, Google Closure Compiler

I'm trying to override a method of a superclass and compile the code using Google Closure Compiler but I'm getting a warning about wrong types. ...

1 2 3