Skip to content

Commit 24ef8e8

Browse files
committed
Update
1 parent e753035 commit 24ef8e8

File tree

1 file changed

+18
-18
lines changed

1 file changed

+18
-18
lines changed

lib/src/generate_screen_access/generator.dart

Lines changed: 18 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -62,27 +62,27 @@ Future<void> generateScreenAccess({
6262
);
6363

6464
// 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)) {
6767
final filePath = filePathResult.path;
6868

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+
// );
7474

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+
// }
8686
}
8787

8888
// final screenClassNames = <String>{};

0 commit comments

Comments
 (0)