@@ -40,7 +40,9 @@ mixin _$ExecutableParameterDeclaration {
40
40
/// the relative path of the library
41
41
String get relativePath => throw _privateConstructorUsedError;
42
42
43
- @JsonKey (ignore: true )
43
+ /// Create a copy of ExecutableParameterDeclaration
44
+ /// with the given fields replaced by the non-null parameter values.
45
+ @JsonKey (includeFromJson: false , includeToJson: false )
44
46
$ExecutableParameterDeclarationCopyWith <ExecutableParameterDeclaration >
45
47
get copyWith => throw _privateConstructorUsedError;
46
48
}
@@ -75,6 +77,8 @@ class _$ExecutableParameterDeclarationCopyWithImpl<$Res,
75
77
// ignore: unused_field
76
78
final $Res Function ($Val ) _then;
77
79
80
+ /// Create a copy of ExecutableParameterDeclaration
81
+ /// with the given fields replaced by the non-null parameter values.
78
82
@pragma ('vm:prefer-inline' )
79
83
@override
80
84
$Res call ({
@@ -154,6 +158,8 @@ class __$$ExecutableParameterDeclarationImplCopyWithImpl<$Res>
154
158
$Res Function (_$ExecutableParameterDeclarationImpl ) _then)
155
159
: super (_value, _then);
156
160
161
+ /// Create a copy of ExecutableParameterDeclaration
162
+ /// with the given fields replaced by the non-null parameter values.
157
163
@pragma ('vm:prefer-inline' )
158
164
@override
159
165
$Res call ({
@@ -288,7 +294,9 @@ class _$ExecutableParameterDeclarationImpl
288
294
typeFullLibraryName,
289
295
relativePath);
290
296
291
- @JsonKey (ignore: true )
297
+ /// Create a copy of ExecutableParameterDeclaration
298
+ /// with the given fields replaced by the non-null parameter values.
299
+ @JsonKey (includeFromJson: false , includeToJson: false )
292
300
@override
293
301
@pragma ('vm:prefer-inline' )
294
302
_$$ExecutableParameterDeclarationImplCopyWith <
@@ -311,40 +319,42 @@ abstract class _ExecutableParameterDeclaration
311
319
_$ExecutableParameterDeclarationImpl ;
312
320
const _ExecutableParameterDeclaration ._() : super ._();
313
321
314
- @override
315
-
316
322
/// whether the parameter is required
317
- bool get isRequired;
318
323
@override
324
+ bool get isRequired;
319
325
320
326
/// whether the parameter is named
321
- bool get isNamed;
322
327
@override
328
+ bool get isNamed;
323
329
324
330
/// the name of the parameter
325
- String get name;
326
331
@override
332
+ String get name;
327
333
328
334
/// whether the parameter is deprecated
329
- bool get isDeprecated;
330
335
@override
336
+ bool get isDeprecated;
331
337
332
338
/// whether the parameter is experimental
333
- bool get isExperimental;
334
339
@override
340
+ bool get isExperimental;
335
341
336
342
/// type name of this parameter
337
- String get typeName;
338
343
@override
344
+ String get typeName;
339
345
340
346
/// the type library path
341
- String ? get typeFullLibraryName;
342
347
@override
348
+ String ? get typeFullLibraryName;
343
349
344
350
/// the relative path of the library
351
+ @override
345
352
String get relativePath;
353
+
354
+ /// Create a copy of ExecutableParameterDeclaration
355
+ /// with the given fields replaced by the non-null parameter values.
346
356
@override
347
- @JsonKey (ignore : true )
357
+ @JsonKey (includeFromJson : false , includeToJson : false )
348
358
_$$ExecutableParameterDeclarationImplCopyWith <
349
359
_$ExecutableParameterDeclarationImpl >
350
360
get copyWith => throw _privateConstructorUsedError;
@@ -385,7 +395,9 @@ mixin _$ExecutableDeclaration {
385
395
/// the relative path of the library
386
396
String get relativePath => throw _privateConstructorUsedError;
387
397
388
- @JsonKey (ignore: true )
398
+ /// Create a copy of ExecutableDeclaration
399
+ /// with the given fields replaced by the non-null parameter values.
400
+ @JsonKey (includeFromJson: false , includeToJson: false )
389
401
$ExecutableDeclarationCopyWith <ExecutableDeclaration > get copyWith =>
390
402
throw _privateConstructorUsedError;
391
403
}
@@ -421,6 +433,8 @@ class _$ExecutableDeclarationCopyWithImpl<$Res,
421
433
// ignore: unused_field
422
434
final $Res Function ($Val ) _then;
423
435
436
+ /// Create a copy of ExecutableDeclaration
437
+ /// with the given fields replaced by the non-null parameter values.
424
438
@pragma ('vm:prefer-inline' )
425
439
@override
426
440
$Res call ({
@@ -517,6 +531,8 @@ class __$$ExecutableDeclarationImplCopyWithImpl<$Res>
517
531
$Res Function (_$ExecutableDeclarationImpl ) _then)
518
532
: super (_value, _then);
519
533
534
+ /// Create a copy of ExecutableDeclaration
535
+ /// with the given fields replaced by the non-null parameter values.
520
536
@pragma ('vm:prefer-inline' )
521
537
@override
522
538
$Res call ({
@@ -716,7 +732,9 @@ class _$ExecutableDeclarationImpl extends _ExecutableDeclaration {
716
732
const DeepCollectionEquality ().hash (_entryPoints),
717
733
relativePath);
718
734
719
- @JsonKey (ignore: true )
735
+ /// Create a copy of ExecutableDeclaration
736
+ /// with the given fields replaced by the non-null parameter values.
737
+ @JsonKey (includeFromJson: false , includeToJson: false )
720
738
@override
721
739
@pragma ('vm:prefer-inline' )
722
740
_$$ExecutableDeclarationImplCopyWith <_$ExecutableDeclarationImpl >
@@ -739,50 +757,52 @@ abstract class _ExecutableDeclaration extends ExecutableDeclaration {
739
757
required final String relativePath}) = _$ExecutableDeclarationImpl ;
740
758
const _ExecutableDeclaration ._() : super ._();
741
759
742
- @override
743
-
744
760
/// name of the return type
745
- String get returnTypeName;
746
- @override // full library name of the return type
747
- String ? get returnTypeFullLibraryName;
748
761
@override
762
+ String get returnTypeName; // full library name of the return type
763
+ @override
764
+ String ? get returnTypeFullLibraryName;
749
765
750
766
/// name of the executable
751
- String get name;
752
767
@override
768
+ String get name;
753
769
754
770
/// whether the executable is deprecated
755
- bool get isDeprecated;
756
771
@override
772
+ bool get isDeprecated;
757
773
758
774
/// whether the executable is experimental
759
- bool get isExperimental;
760
775
@override
776
+ bool get isExperimental;
761
777
762
778
/// list of the executables parameters ([ExecutableOParameterDeclaration] s)
763
- List <ExecutableParameterDeclaration > get parameters;
764
779
@override
780
+ List <ExecutableParameterDeclaration > get parameters;
765
781
766
782
/// type parameter names of this executable
767
- List <String > get typeParameterNames;
768
783
@override
784
+ List <String > get typeParameterNames;
769
785
770
786
/// type of the executable
771
- ExecutableType get type;
772
787
@override
788
+ ExecutableType get type;
773
789
774
790
/// whether the executable is a static method
775
- bool get isStatic;
776
791
@override
792
+ bool get isStatic;
777
793
778
794
/// entry points for this executable
779
- Set <String >? get entryPoints;
780
795
@override
796
+ Set <String >? get entryPoints;
781
797
782
798
/// the relative path of the library
799
+ @override
783
800
String get relativePath;
801
+
802
+ /// Create a copy of ExecutableDeclaration
803
+ /// with the given fields replaced by the non-null parameter values.
784
804
@override
785
- @JsonKey (ignore : true )
805
+ @JsonKey (includeFromJson : false , includeToJson : false )
786
806
_$$ExecutableDeclarationImplCopyWith <_$ExecutableDeclarationImpl >
787
807
get copyWith => throw _privateConstructorUsedError;
788
808
}
0 commit comments