Skip to content

Commit d20e60c

Browse files
committed
Update
1 parent 063f784 commit d20e60c

File tree

1 file changed

+7
-3
lines changed

1 file changed

+7
-3
lines changed

lib/src/generate_screen_access/generator.dart

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ Future<void> generateScreenAccess({
2424
String? templateFilePath,
2525
}) async {
2626
// Notify start.
27-
debugLogStart('Starting generator. Please wait...');
27+
debugLogStart('Starting generator (1). Please wait...');
2828

2929
// Explore all source paths.
3030
final sourceFileExporer = PathExplorer(
@@ -63,8 +63,8 @@ Future<void> generateScreenAccess({
6363
);
6464

6565
// For each file...
66-
for (final filePathResult in sourceFileExplorerResults.filePathResults
67-
.where((e) => e.category == _Categories.DART)) {
66+
for (final filePathResult
67+
in sourceFileExplorerResults.filePathResults.where((e) => e.category == _Categories.DART)) {
6868
final filePath = filePathResult.path;
6969

7070
// Extract insights from the file.
@@ -73,6 +73,10 @@ Future<void> generateScreenAccess({
7373
filePath,
7474
);
7575

76+
printRed(filePath);
77+
debugLogAlert(filePath);
78+
debugLogAlert(classInsights.length);
79+
7680
if (classInsights.isNotEmpty) {
7781
printRed(classInsights.map((e) => e.className));
7882
// // Converge what was gathered to generate the output.

0 commit comments

Comments
 (0)