Skip to content

Commit 9e19a50

Browse files
committed
Update
1 parent 9eb8e1e commit 9e19a50

File tree

1 file changed

+10
-10
lines changed

1 file changed

+10
-10
lines changed

lib/src/generate_screen_access/_extract_class_insights_from_dart_file.dart

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -35,16 +35,16 @@ Future<List<_ClassInsight>> extractClassInsightsFromDartFile(
3535
// temp = _updateFromClassAnnotationField(temp, params),
3636
onPreAnalysis: (_, __) => temp = const ModelGenerateScreenBindings(),
3737
onPostAnalysis: (params) {
38-
final fullPathName = params.fullFilePath;
39-
final fileName = p.basename(fullPathName);
40-
final dirPath = p.dirname(fullPathName);
41-
final insight = _ClassInsight(
42-
className: params.className,
43-
annotation: temp,
44-
dirPath: dirPath,
45-
fileName: fileName,
46-
);
47-
insights.add(insight);
38+
// final fullPathName = params.fullFilePath;
39+
// final fileName = p.basename(fullPathName);
40+
// final dirPath = p.dirname(fullPathName);
41+
// final insight = _ClassInsight(
42+
// className: params.className,
43+
// annotation: temp,
44+
// dirPath: dirPath,
45+
// fileName: fileName,
46+
// );
47+
// insights.add(insight);
4848
},
4949
);
5050
return insights;

0 commit comments

Comments
 (0)