We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b5a8fd2 commit b154741Copy full SHA for b154741
src/slangPrinter.ts
@@ -30,8 +30,8 @@ function ignoreComments(path: AstPath<AstNode>): void {
30
let key: keyof StrictAstNode;
31
for (key in node) {
32
switch (key) {
33
- // We ignore `kind`, `loc`, and `comments` since these are added by the
34
- // parser. `updateMetadata` is an internal function.
+ // We ignore `kind` and `loc` since these are added by the parser.
+ // `updateMetadata` is an internal function.
35
case 'kind':
36
case 'loc':
37
case 'updateMetadata':
0 commit comments