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
The resulting raw AST contains the line comment (as expected). If I call summary() on that AST, the line comment is represented as a KlassComment (again, as expected).
Hi @henrikbarium, should be working now. Some AST-Nodes were dropping "unrelated" AST-Nodes, but comments were handled as unrelated. I changed this "related" filter and added a new comment filter to keep all comment nodes.
If I run:
The resulting raw AST contains the line comment (as expected). If I call
summary()
on that AST, the line comment is represented as aKlassComment
(again, as expected).Then, if I run:
Again, the resulting raw AST contains the line comment (as expected). However, if I call
summary()
on that AST I cannot find the comment anywhere.Am I missing something or is this a limitation/bug in the library?
The text was updated successfully, but these errors were encountered: