Skip to content

Commit 14d984d

Browse files
committed
+fix issues
1 parent f67ebca commit 14d984d

3 files changed

Lines changed: 23 additions & 17 deletions

File tree

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1-
[![banner](https://github.com/dev-cetera/df_gen_core/blob/v0.7.2/doc/assets/banner.png?raw=true)](https://github.com/dev-cetera)
1+
[![banner](https://github.com/dev-cetera/df_gen_core/blob/v0.7.1/doc/assets/banner.png?raw=true)](https://github.com/dev-cetera)
22

33
[![pub](https://img.shields.io/pub/v/df_gen_core.svg)](https://pub.dev/packages/df_gen_core)
4-
[![tag](https://img.shields.io/badge/Tag-v0.7.2-purple?logo=github)](https://github.com/dev-cetera/df_gen_core/tree/v0.7.2)
4+
[![tag](https://img.shields.io/badge/Tag-v0.7.1-purple?logo=github)](https://github.com/dev-cetera/df_gen_core/tree/v0.7.1)
55
[![buymeacoffee](https://img.shields.io/badge/Buy%20Me%20A%20Coffee-FFDD00?logo=buy-me-a-coffee&logoColor=black)](https://www.buymeacoffee.com/dev_cetera)
66
[![sponsor](https://img.shields.io/badge/Sponsor-grey?logo=github-sponsors&logoColor=pink)](https://github.com/sponsors/dev-cetera)
77
[![patreon](https://img.shields.io/badge/Patreon-grey?logo=patreon)](https://www.patreon.com/robelator)

lib/src/language_support/dart_annotated_class_analyzer.dart

Lines changed: 20 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -85,8 +85,8 @@ final class DartAnnotatedClassAnalyzer {
8585
fullFileUri.toString(),
8686
);
8787
if (library is LibraryElementResult) {
88-
final classElements = library.element.topLevelElements
89-
.whereType<ClassElement>();
88+
final classElements =
89+
library.element.topLevelElements.whereType<ClassElement>();
9090
for (final classElement in classElements) {
9191
final className = classElement.displayName;
9292
if (classNameFilter == null || classNameFilter.hasMatch(className)) {
@@ -306,8 +306,9 @@ final class OnAnnotatedClassParams {
306306
});
307307
}
308308

309-
typedef TOnAnnotatedClassCallback =
310-
Future<dynamic> Function(OnAnnotatedClassParams parent);
309+
typedef TOnAnnotatedClassCallback = Future<dynamic> Function(
310+
OnAnnotatedClassParams parent,
311+
);
311312

312313
// ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░
313314

@@ -328,8 +329,9 @@ final class OnClassAnnotationFieldParams {
328329
});
329330
}
330331

331-
typedef TOnClassAnnotationFieldCallback =
332-
Future<dynamic> Function(OnClassAnnotationFieldParams parent);
332+
typedef TOnClassAnnotationFieldCallback = Future<dynamic> Function(
333+
OnClassAnnotationFieldParams parent,
334+
);
333335

334336
// ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░
335337

@@ -348,8 +350,9 @@ final class OnAnnotatedMethodParams {
348350
});
349351
}
350352

351-
typedef TOnAnnotatedMethodCallback =
352-
Future<dynamic> Function(OnAnnotatedMethodParams parent);
353+
typedef TOnAnnotatedMethodCallback = Future<dynamic> Function(
354+
OnAnnotatedMethodParams parent,
355+
);
353356

354357
// ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░
355358

@@ -370,8 +373,9 @@ final class OnMethodAnnotationFieldParams {
370373
});
371374
}
372375

373-
typedef TOnMethodAnnotationFieldCallback =
374-
Future<dynamic> Function(OnMethodAnnotationFieldParams parent);
376+
typedef TOnMethodAnnotationFieldCallback = Future<dynamic> Function(
377+
OnMethodAnnotationFieldParams parent,
378+
);
375379

376380
// ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░
377381

@@ -392,8 +396,9 @@ final class OnAnnotatedMemberParams {
392396
});
393397
}
394398

395-
typedef TOnAnnotatedMemberCallback =
396-
Future<dynamic> Function(OnAnnotatedMemberParams parent);
399+
typedef TOnAnnotatedMemberCallback = Future<dynamic> Function(
400+
OnAnnotatedMemberParams parent,
401+
);
397402

398403
// ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░
399404

@@ -414,8 +419,9 @@ final class OnMemberAnnotationFieldParams {
414419
});
415420
}
416421

417-
typedef TOnMemberAnnotationFieldsCallback =
418-
Future<dynamic> Function(OnMemberAnnotationFieldParams parent);
422+
typedef TOnMemberAnnotationFieldsCallback = Future<dynamic> Function(
423+
OnMemberAnnotationFieldParams parent,
424+
);
419425

420426
// ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░
421427

pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ dependencies:
4141

4242
df_collection: ^0.9.8
4343
df_config: ^0.7.5
44-
df_log: ^0.3.20
44+
df_log: ^0.4.0
4545
df_safer_dart: ^0.17.3
4646
df_string: ^0.2.9
4747
df_type: ^0.14.2

0 commit comments

Comments
 (0)