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 91e6bce commit 0c5429dCopy full SHA for 0c5429d
src/services/services.ts
@@ -45,7 +45,7 @@ namespace ts {
45
public end: number;
46
public flags: NodeFlags;
47
public parent: Node;
48
- public jsDocComments: JSDoc[];
+ public jsDoc: JSDoc[];
49
public original: Node;
50
public transformFlags: TransformFlags;
51
private _children: Node[];
@@ -154,8 +154,8 @@ namespace ts {
154
pos = nodes.end;
155
};
156
// jsDocComments need to be the first children
157
- if (this.jsDocComments) {
158
- for (const jsDocComment of this.jsDocComments) {
+ if (this.jsDoc) {
+ for (const jsDocComment of this.jsDoc) {
159
processNode(jsDocComment);
160
}
161
0 commit comments