-
Notifications
You must be signed in to change notification settings - Fork 43
Open
Description
Hello, thanks for this project 👍
One thing I would like to have is the JsDoc comments associated with a declaration:
/**
* A meaningless declaration.
*/
const hello = "world";current result:
VariableDeclaration {
name: 'hello',
isConst: true,
isExported: false,
type: undefined,
start: 38,
end: 60 }
desired result:
VariableDeclaration {
comment: '/**\n * A meaningless declaration.\n */',
name: 'hello',
isConst: true,
isExported: false,
type: undefined,
start: 38,
end: 60 }
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
No labels