File tree Expand file tree Collapse file tree 1 file changed +7
-3
lines changed
lib/src/generate_screen_access Expand file tree Collapse file tree 1 file changed +7
-3
lines changed Original file line number Diff line number Diff line change @@ -24,7 +24,7 @@ Future<void> generateScreenAccess({
24
24
String ? templateFilePath,
25
25
}) async {
26
26
// Notify start.
27
- debugLogStart ('Starting generator. Please wait...' );
27
+ debugLogStart ('Starting generator (1) . Please wait...' );
28
28
29
29
// Explore all source paths.
30
30
final sourceFileExporer = PathExplorer (
@@ -63,8 +63,8 @@ Future<void> generateScreenAccess({
63
63
);
64
64
65
65
// 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 )) {
68
68
final filePath = filePathResult.path;
69
69
70
70
// Extract insights from the file.
@@ -73,6 +73,10 @@ Future<void> generateScreenAccess({
73
73
filePath,
74
74
);
75
75
76
+ printRed (filePath);
77
+ debugLogAlert (filePath);
78
+ debugLogAlert (classInsights.length);
79
+
76
80
if (classInsights.isNotEmpty) {
77
81
printRed (classInsights.map ((e) => e.className));
78
82
// // Converge what was gathered to generate the output.
You can’t perform that action at this time.
0 commit comments