-
-
Notifications
You must be signed in to change notification settings - Fork 23
/
index.js
418 lines (351 loc) · 9.96 KB
/
index.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
'use strict';
const Emitter = require('events');
const extract = require('extract-comments');
const tokenize = require('tokenize-comment');
const lib = require('./lib');
const { utils } = lib;
/**
* Create an instance of `Comments` with the given `options`.
*
* ```js
* const Comments = require('parse-comments');
* const comments = new Comments();
* ```
* @name Comments
* @extends Emitter
* @param {Object} options
* @api public
*/
class Comments extends Emitter {
constructor(options = {}) {
super();
this.options = options;
this.comments = [];
this.parsers = {};
this.tokens = [];
this.ast = {};
}
/**
* Tokenize a single javascript comment.
*
* ```js
* const parser = new ParseComments();
* const tokens = parser.tokenize([string]);
* ```
* @param {String} `javascript` String of javascript
* @param {Object} `options`
* @return {Object} Returns an object with `description` string, array of `examples`, array of `tags` (strings), and a `footer` if descriptions are defined both before and after tags.
* @api public
*/
tokenize(input, options) {
let opts = Object.assign({}, this.options, options);
// this only needs to be roughly correct. the tokenizer is smarter
let isComment = str => /^(\s*\/\*|\*\s*@| {4,})/gm.test(str);
if (opts.stripStars === void 0 && input && !isComment(input)) {
opts.stripStars = false;
}
return tokenize(input, opts);
}
/**
* Extracts and parses code comments from the given `str` of JavaScript.
*
* ```js
* const parser = new ParseComments();
* const comments = parser.parse(string);
* ```
* @param {String} `str` String of javascript
* @param {Object} `options`
* @return {Array} Array of objects.
* @api public
*/
parse(str, options) {
this.ast = this.extract(str.toString(), options, comment => {
return this.parseComment(comment, options);
});
return this.ast;
}
/**
* Parse a single code comment.
*
* ```js
* let parser = new ParseComments();
* let comments = parser.parseComment(string);
* ```
* @param {String} `str` JavaScript comment
* @param {Object} `options`
* @return {Object} Parsed comment object
* @api public
*/
parseComment(comment, options) {
let opts = Object.assign({}, this.options, options);
let parsers = opts.parse || {};
if (typeof parsers.comment === 'function') {
comment = parsers.comment.call(this, comment, opts);
} else if (typeof comment === 'string') {
comment = this.parse.apply(this, arguments)[0];
} else {
let tok = this.tokenize(comment.value, opts);
this.tokens.push(tok);
comment = Object.assign({}, comment, tok);
lib.normalize.examples(comment, opts);
comment.tags = this.parseTags(comment, options);
}
// parse inline tags
if (comment.description) {
let inline = this.parseInlineTags(comment.description, opts);
comment.description = inline.value;
comment.inlineTags = inline.tags;
}
// optionally format comment object
if (opts.format === true) {
comment = lib.format.call(this, comment, opts);
}
this.emit('comment', comment);
return comment;
}
/**
* Parses a single tag from a code comment. For example, each of the following
* lines is a single tag
*
* ```js
* @constructor
* @param {String}
* @param {String} name
* @param {String} name The name to use for foo
* ```
*
* @param {Object} tok Takes a token from
* @return {Object}
* @api public
*/
parseTags(comment, options) {
let opts = Object.assign({}, this.options, options);
let parsers = opts.parse || {};
let tags = [];
if (typeof parsers.parseTags === 'function') {
return parsers.parseTags.call(this, comment, opts);
}
for (let raw of comment.tags) {
let tag = this.parseTag(raw, opts);
if (tag) {
utils.define(tag, 'rawType', tag.rawType);
utils.define(tag, 'raw', raw);
tags.push(tag);
}
}
return tags;
}
/**
* Parses a single tag from a code comment. For example, each of the following
* lines is a single tag
*
* ```js
* @constructor
* @param {String}
* @param {String} name
* @param {String} name The name to use for foo
* ```
* @param {Object} tok
* @return {Object}
* @api public
*/
parseTag(tok, options) {
let opts = Object.assign({}, this.options, options);
let parsers = opts.parse || {};
let tag;
if (typeof tok === 'string') {
tok = { raw: tok, value: tok };
}
if (typeof parsers.tag === 'function') {
return parsers.tag.call(this, tok.raw, opts);
}
try {
tag = lib.parse.tag(tok);
} catch (err) {
if (opts.strict) throw err;
return null;
}
if (!tag || tag.rawType && !lib.allows.type(tok)) {
return null;
}
if (tag.rawType) {
tag.type = this.parseType(tag.rawType.slice(1, -1), tag, options);
}
if (tag && lib.expects.type(tag) && !tag.type) {
if (opts.strict === true) {
return null;
}
tag.type = null;
}
tag = lib.normalize.tag(tag, opts);
if (!tag) {
return null;
}
tag = lib.validate.tag(tag, opts);
if (!tag) {
return null;
}
if (tag.description) {
let inline = this.parseInlineTags(tag.description, opts);
tag.description = inline.value;
tag.inlineTags = inline.tags;
}
return tag;
}
/**
* Parses the types from a single tag. Supports any type from jsdoc, falling
* back on types from Google's Closure Compiler when not defined by jsdoc.
*
* ```js
* @param {String}
* @param {...string}
* @param {function(...a)}
* @param {function(...a:b)}
* @param {String|Array}
* @param {(String|Array)}
* @param {{foo: bar}}
* @param {String[]}
* @param {Array<String|Function|Array>=}
* ```
* @param {String} value The
* @return {Object}
* @api public
*/
parseInlineTags(str, options) {
if (typeof str !== 'string') {
throw new TypeError('expected a string');
}
let opts = { ...this.options, ...options };
let parsers = opts.parse || {};
if (typeof parsers.inlineTag === 'function') {
return parsers.inlineTag.call(this, str, opts);
}
return lib.parse.inline(str, opts);
}
/**
* Parses the types from a single tag.
*
* ```js
* @param {String}
* @param {String|Array}
* @param {(String|Array)}
* @param {{foo: bar}}
* ```
* @param {string} str The string to parse
* @return {object}
* @api public
*/
parseType(str, tag, options) {
if (typeof str !== 'string') {
throw new TypeError('expected a string');
}
let opts = { ...this.options, ...options };
let parsers = opts.parse || {};
if (typeof parsers.type === 'function') {
return parsers.type.call(this, str, tag, opts);
}
let ast = lib.parse.type(str, tag, opts);
return ast.value;
}
parseParamType(str, options) {
if (typeof str !== 'string') {
throw new TypeError('expected a string');
}
let opts = { ...this.options, ...options };
let parsers = opts.parse || {};
if (typeof parsers.paramType === 'function') {
return parsers.paramType.call(this, str, opts);
}
return str;
}
decorate(name, obj) {
let fn = this.decorators[name];
if (typeof fn === 'function') {
fn.call(this, obj);
}
}
extract(str, options, fn) {
if (typeof options === 'function') {
fn = options;
options = {};
}
let comments = [];
let opts = Object.assign({}, this.options, options);
let res = [];
if (typeof opts.extract === 'function') {
comments = [].concat(opts.extract.call(this, str, opts) || []);
} else {
comments = extract.block(str, opts);
}
for (let i = 0; i < comments.length; i++) {
if (this.isValid(comments[i], options) === false) {
continue;
}
let comment = this.preprocess(comments[i], options);
if (typeof fn === 'function') {
comment = fn.call(this, comment) || comment;
}
res.push(comment);
}
return res;
}
preprocess(comment, options) {
let opts = Object.assign({}, this.options, options);
if (typeof opts.preprocess === 'function') {
return opts.preprocess.call(this, comment, opts);
}
let obj = utils.copyNode(comment);
obj.code = utils.copyNode(comment.code);
obj.code.context = utils.copyNode(comment.code.context);
return obj;
}
/**
* Returns true if the given `comment` is valid (meaning the comment
* may be parsed). Comments are considered valid when they begin with
* `/**`, and do not contain `jslint`, `jshint`, `eshint`, or `eslint`.
* A custom `isValid` function may be passed on the constructor options.
*
* @param {Object} `comment`
* @param {Object} `options`
* @return {Boolean}
* @api public
*/
isValid(comment, options) {
if (!utils.isObject(comment)) {
throw new TypeError('expected comment to be an object');
}
let opts = Object.assign({}, this.options, options);
if (typeof opts.isValid === 'function') {
return opts.isValid(comment);
}
if (!utils.isValidBlockComment(comment, options)) {
return false;
}
return true;
}
isConfigComment(comment, names) {
if (!utils.isObject(comment)) {
throw new TypeError('expected comment to be an object');
}
return utils.isConfigComment(comment.value, names);
}
isProtectedComment(comment) {
if (!utils.isObject(comment)) {
throw new TypeError('expected comment to be an object');
}
return utils.isProtectedComment(comment.raw);
}
static parse(str, options) {
let comments = new Comments(options);
return comments.parse(str);
}
static parseType(str, options) {
let comments = new Comments(options);
return comments.parseType(str);
}
}
/**
* Expose `Comments`
* @type {Constructor}
*/
module.exports = Comments;