We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d5d11ff commit e1caac4Copy full SHA for e1caac4
src/parsers.ts
@@ -477,13 +477,12 @@ export class CommentParser {
477
this.parsedFiles[file] = newdata;
478
}
479
480
- // fix for decorators
481
-
482
const comments = extract(newdata);
483
if (comments.length > 0) {
484
comments.forEach((comment) => {
485
if (comment.type !== "BlockComment") return;
486
let lines = comment.value.split("\n").filter((l) => l != "");
+ // fix for decorators
487
if (lines[0].trim() !== "@" + action) return;
488
lines = lines.filter((l) => l != "");
489
0 commit comments