Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.
private analyzeSubclassExtensions() {
if (this.hasAnalyzedSubclassExtensions) return;
const result = analyzeLibDomHtmlElement(this.program, this.ts);
if (result != null) {
const extension = convertComponentDeclarationToHtmlTag(result, undefined, { checker: this.checker });
this.htmlStore.absorbSubclassExtension("HTMLElement", extension);
this.hasAnalyzedSubclassExtensions = true;
}
}