You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
It would be great if the JSDoc comments above parser rules in grammar files are forwarded to the respective generated AST interface to improve IntelliSense when using that AST node type.
For example, if I write
/** A human being who has a name */
Person:
'person' name=ID;
I would like generated/ast.ts to have:
/** A human being who has a name */exportinterfacePersonextendsAstNode{name: string;}
It would also be nice if this can be extended to properties as well.
The text was updated successfully, but these errors were encountered:
It would be great if the JSDoc comments above parser rules in grammar files are forwarded to the respective generated AST interface to improve IntelliSense when using that AST node type.
For example, if I write
I would like
generated/ast.ts
to have:It would also be nice if this can be extended to properties as well.
The text was updated successfully, but these errors were encountered: