Home
last modified time | relevance | path

Searched refs:fileErrors (Results 1 – 3 of 3) sorted by relevance

/third_party/flutter/flutter/packages/flutter_tools/lib/src/commands/
Danalyze_continuously.dart161 void _handleAnalysisErrors(FileAnalysisErrors fileErrors) {
162 fileErrors.errors.removeWhere((AnalysisError error) => error.type == 'TODO');
164 analyzedPaths.add(fileErrors.file);
165 analysisErrors[fileErrors.file] = fileErrors.errors;
Danalyze_once.dart89 server.onErrors.listen((FileAnalysisErrors fileErrors) {
91 errors.addAll(fileErrors.errors.where((AnalysisError error) => error.type != 'TODO'));
/third_party/typescript/src/harness/
DharnessIO.ts613 const fileErrors = diagnostics.filter((e): e is ts.DiagnosticWithLocation => { constant
620 …outputLines += (newLine() + "==== " + inputFile.unitName + " (" + fileErrors.length + " errors) ==…
650 fileErrors.forEach(errDiagnostic => {
677 … assert.equal(markedErrorCount, fileErrors.length, "count of errors in " + inputFile.unitName);