feat(compiler-cli): reflect static methods added to classes in metadata (#21926)
PR Close #21926
This commit is contained in:

committed by
Alex Rickabaugh

parent
1aa2947f70
commit
eb8ddd2983
@ -76,6 +76,9 @@ export class MetadataCollector {
|
||||
}
|
||||
|
||||
function recordEntry<T extends MetadataEntry>(entry: T, node: ts.Node): T {
|
||||
if (composedSubstituter) {
|
||||
entry = composedSubstituter(entry as MetadataValue, node) as T;
|
||||
}
|
||||
return recordMapEntry(entry, node, nodeMap, sourceFile);
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user