File tree Expand file tree Collapse file tree 1 file changed +18
-18
lines changed
lib/src/generate_screen_access Expand file tree Collapse file tree 1 file changed +18
-18
lines changed Original file line number Diff line number Diff line change @@ -62,27 +62,27 @@ Future<void> generateScreenAccess({
62
62
);
63
63
64
64
// For each file...
65
- for (final filePathResult in sourceFileExplorerResults.filePathResults
66
- .where ((e) => e.category == _Categories .DART )) {
65
+ for (final filePathResult
66
+ in sourceFileExplorerResults.filePathResults .where ((e) => e.category == _Categories .DART )) {
67
67
final filePath = filePathResult.path;
68
68
69
- // Extract insights from the file.
70
- final classInsights = await extractClassInsightsFromDartFile (
71
- analysisContextCollection,
72
- filePath,
73
- );
69
+ // // Extract insights from the file.
70
+ // final classInsights = await extractClassInsightsFromDartFile(
71
+ // analysisContextCollection,
72
+ // filePath,
73
+ // );
74
74
75
- if (classInsights.isNotEmpty) {
76
- // Converge what was gathered to generate the output.
77
- // await generatorConverger.converge(
78
- // classInsights,
79
- // [template],
80
- // [
81
- // ...insightMappersA,
82
- // ...insightMappersB,
83
- // ],
84
- // );
85
- }
75
+ // if (classInsights.isNotEmpty) {
76
+ // // Converge what was gathered to generate the output.
77
+ // // await generatorConverger.converge(
78
+ // // classInsights,
79
+ // // [template],
80
+ // // [
81
+ // // ...insightMappersA,
82
+ // // ...insightMappersB,
83
+ // // ],
84
+ // // );
85
+ // }
86
86
}
87
87
88
88
// final screenClassNames = <String>{};
You can’t perform that action at this time.
0 commit comments