The JSDoc parsing function:
|
function parseJsDocTagString(str: string): JsDocTagParsed { |
assumes types are of this format:
/**
@param {someType} someName someDescription
*/
which is fine, except for events. a common pattern when defining an event in JSDoc is:
/**
@fires some-name {someType}
*/
for example, mwc does this. i do too.
related problem: if we have @fires my-event {MouseEvent}, it seems this function won't bother with it and will return any.
is there any chance at some point this could be able to somehow resolve global types? or would that be lit-analyzer's job to lookup in its store?
The JSDoc parsing function:
web-component-analyzer/src/analyze/util/js-doc-util.ts
Line 274 in f0bfaf1
assumes types are of this format:
which is fine, except for events. a common pattern when defining an event in JSDoc is:
for example, mwc does this. i do too.
related problem: if we have
@fires my-event {MouseEvent}, it seems this function won't bother with it and will returnany.is there any chance at some point this could be able to somehow resolve global types? or would that be lit-analyzer's job to lookup in its store?