UNPKG

654 BJavaScriptView Raw
1'use strict';
2
3/**
4 * @see [Nowhere](http://nowhere.com)
5 */
6function foo() {}
7
8/**
9 * @see AnObject#myProperty
10 */
11function bar() {}
12
13/**
14 * @author [Mr. Macintosh](http://www.folklore.org/StoryView.py?story=Mister_Macintosh.txt)
15 * @classdesc My class.
16 * @description My class.
17 * @exception {Error} Some error.
18 * @param {string} myParam - My parameter.
19 * @property {string} value - Value of myParam.
20 * @return {MyClass} Class instance.
21 * @see [Example Inc.](http://example.com)
22 * @summary My class.
23 */
24function MyClass(myParam) {
25 this.value = myParam;
26}
27
28/**
29 * "See" {@link chat."#channel"."say-\"hello\""}.
30 */
31function MyOtherClass() {}