| Index: lib/src/closure/closure_annotation.dart
|
| diff --git a/lib/src/closure/closure_annotation.dart b/lib/src/closure/closure_annotation.dart
|
| index e05deba43b4fba5437c98a4a08840aa3203e1b3a..80d5aae3838b536bea61a6a2845114cef71b5562 100644
|
| --- a/lib/src/closure/closure_annotation.dart
|
| +++ b/lib/src/closure/closure_annotation.dart
|
| @@ -31,13 +31,26 @@ class ClosureAnnotation {
|
| final List<String> templates;
|
| final Map<String, ClosureType> paramTypes;
|
|
|
| - ClosureAnnotation({this.interfaces: const [], this.isConst: false,
|
| - this.isConstructor: false, this.isFinal: false, this.isNoCollapse: false,
|
| - this.isNoSideEffects: false, this.isOverride: false,
|
| - this.isPrivate: false, this.isProtected: false, this.isStruct: false,
|
| - this.isTypedef: false, this.lendsToType, this.paramTypes: const {},
|
| - this.returnType, this.superType, this.templates: const [], this.thisType,
|
| - this.throwsType, this.type});
|
| + ClosureAnnotation(
|
| + {this.interfaces: const [],
|
| + this.isConst: false,
|
| + this.isConstructor: false,
|
| + this.isFinal: false,
|
| + this.isNoCollapse: false,
|
| + this.isNoSideEffects: false,
|
| + this.isOverride: false,
|
| + this.isPrivate: false,
|
| + this.isProtected: false,
|
| + this.isStruct: false,
|
| + this.isTypedef: false,
|
| + this.lendsToType,
|
| + this.paramTypes: const {},
|
| + this.returnType,
|
| + this.superType,
|
| + this.templates: const [],
|
| + this.thisType,
|
| + this.throwsType,
|
| + this.type});
|
|
|
| @override
|
| int get hashCode => _cachedString.hashCode;
|
|
|