Lines Matching refs:fileQuery
167 fileQuery: string, sourceFile: ts.SourceFile = null): LogInfo[] {
171 const res: LogInfo[] = checkComponentDecorator(source, filePath, fileQuery, sourceFile);
177 checkUISyntax(filePath, allComponentNames, content, log, sourceFile, fileQuery);
185 fileQuery: string, sourceFile: ts.SourceFile | null): LogInfo[] | null {
234 validateEntryAndPreviewCount(result, fileQuery, sourceFile.fileName, projectConfig.isPreview,
241 function validateEntryAndPreviewCount(result: DecoratorResult, fileQuery: string,
243 if (result.previewCount > 10 && (fileQuery === '?entry' || process.env.watchMode === 'true')) {
250 if (result.entryCount > 1 && fileQuery === '?entry') {
258 fileQuery === '?entry') {
265 …} else if ((!isPreview || isPreview && checkEntry) && result.entryCount !== 1 && fileQuery === '?e…
392 log: LogInfo[], sourceFile: ts.SourceFile | null, fileQuery: string): void {
396 visitAllNode(sourceFile, sourceFile, allComponentNames, log, false, fileQuery);
399 function propertyInitializeInEntry(fileQuery: string, name: string): boolean {
400 return fileQuery === '?entry' && name === componentCollection.entryComponent;
404 log: LogInfo[], structContext: boolean, fileQuery: string): void {
407 …collectComponentProps(node, propertyInitializeInEntry(fileQuery, node.name.escapedText.toString())…
449 log, structContext, fileQuery));