Skip to content

Commit

Permalink
Parts. Print 'fileKinds', not 'files', as more precise.
Browse files Browse the repository at this point in the history
Change-Id: I5d31e39b880d6e1186b732cce23b7918ae20a93f
Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/376840
Reviewed-by: Brian Wilkerson <brianwilkerson@google.com>
Commit-Queue: Konstantin Shcheglov <scheglov@google.com>
  • Loading branch information
scheglov authored and Commit Queue committed Jul 19, 2024
1 parent 6864b90 commit 55ff601
Show file tree
Hide file tree
Showing 4 changed files with 280 additions and 280 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -266,8 +266,8 @@ class AnalyzerStatePrinter {
_writePartIncludes(kind);
_writeDocImports(kind);

var filesIds = kind.files.map(idProvider.fileState);
_writelnWithIndent('files: ${filesIds.join(' ')}');
var filesIds = kind.fileKinds.map(idProvider.fileKind);
_writelnWithIndent('fileKinds: ${filesIds.join(' ')}');

_writeLibraryCycle(kind);
});
Expand Down
Loading

0 comments on commit 55ff601

Please sign in to comment.