@@ -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
0 commit comments