File tree Expand file tree Collapse file tree 2 files changed +11
-11
lines changed Expand file tree Collapse file tree 2 files changed +11
-11
lines changed Original file line number Diff line number Diff line change 7
7
// ▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓
8
8
//.title~
9
9
10
- export './annotations/must_be_strict_annotation.dart' ;
11
- export './annotations/must_be_anonymous_annotation.dart' ;
12
- export './annotations/no_futures_allowed_annotation.dart' ;
13
10
export './annotations/experimental_annotations.dart' ;
14
11
export './annotations/must_await_all_futures_annotation.dart' ;
12
+ export './annotations/must_be_anonymous_annotation.dart' ;
13
+ export './annotations/must_be_strong_ref_annotation.dart' ;
15
14
export './annotations/must_handle_return_annotation.dart' ;
15
+ export './annotations/no_futures_allowed_annotation.dart' ;
Original file line number Diff line number Diff line change 10
10
// ▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓
11
11
//.title~
12
12
13
- const mustBeStrictOrError = MustBeStrictOrErrorAnnotation ();
13
+ const mustBeStrongRefOrError = MustBeStrongRefOrErrorAnnotation ();
14
14
15
- /// The class that enables the `@mustBeStrictOrError ` annotation.
16
- final class MustBeStrictOrErrorAnnotation {
17
- const MustBeStrictOrErrorAnnotation ();
15
+ /// The class that enables the `@MustBeStrongRefOrError ` annotation.
16
+ final class MustBeStrongRefOrErrorAnnotation {
17
+ const MustBeStrongRefOrErrorAnnotation ();
18
18
}
19
19
20
- const mustBeStrict = MustBeStrictAnnotation ();
20
+ const mustBeStrongRef = MustBeStrongRefAnnotation ();
21
21
22
- /// The class that enables the `@mustBeStrict ` annotation.
23
- final class MustBeStrictAnnotation {
24
- const MustBeStrictAnnotation ();
22
+ /// The class that enables the `@MustBeStrongRef ` annotation.
23
+ final class MustBeStrongRefAnnotation {
24
+ const MustBeStrongRefAnnotation ();
25
25
}
You can’t perform that action at this time.
0 commit comments