Lines Matching refs:extendFunctionInfo
216 const extendFunctionInfo: extendInfo[] = []; constant
217 content = instanceInsteadThis(content, fileName, extendFunctionInfo);
683 const extendFunctionInfo: extendInfo[] = []; constant
684 content = instanceInsteadThis(content, fileName, extendFunctionInfo);
700 export function instanceInsteadThis(content: string, fileName: string, extendFunctionInfo: extendIn…
701 checkUISyntax(content, fileName, extendFunctionInfo);
702 extendFunctionInfo.reverse().forEach((item) => {
725 function checkUISyntax(source: string, fileName: string, extendFunctionInfo: extendInfo[]): void {
732 parseAllNode(sourceFile, sourceFile, extendFunctionInfo);
750 function parseAllNode(node: ts.Node, sourceFileNode: ts.SourceFile, extendFunctionInfo: extendInfo[…
787 extendFunctionInfo.push({
793 …e.getChildren().forEach((item: ts.Node) => parseAllNode(item, sourceFileNode, extendFunctionInfo));