Skip to content

Commit f89295b

Browse files
committed
Update
1 parent 7c80cfe commit f89295b

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

lib/src/generate_screen_access/generator.dart

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ Future<void> generateScreenAccess({
7070
final filePath = filePathResult.path;
7171

7272
// Extract insights from the file.
73-
final classInsights = await extractClassInsightsFromDartFile(
73+
final classInsights = await extractClassInsightsFromDartFile1(
7474
analysisContextCollection,
7575
filePath,
7676
);
@@ -140,7 +140,7 @@ Future<void> generateScreenAccess({
140140

141141
// ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░
142142

143-
Future<List<_ClassInsight>> extractClassInsightsFromDartFile(
143+
Future<List<ClassInsight1>> extractClassInsightsFromDartFile1(
144144
AnalysisContextCollection analysisContextCollection,
145145
String filePath,
146146
) async {
@@ -176,4 +176,4 @@ enum _Categories {
176176
DART,
177177
}
178178

179-
typedef _ClassInsight = ClassInsight<ModelGenerateScreenBindings>;
179+
typedef ClassInsight1 = ClassInsight<ModelGenerateScreenBindings>;

0 commit comments

Comments
 (0)