Skip to content

Commit 765fb92

Browse files
committed
update
1 parent d11e192 commit 765fb92

File tree

2 files changed

+11
-11
lines changed

2 files changed

+11
-11
lines changed

lib/src/_src.g.dart

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,9 @@
77
// ▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓
88
//.title~
99

10-
export './annotations/must_be_strict_annotation.dart';
11-
export './annotations/must_be_anonymous_annotation.dart';
12-
export './annotations/no_futures_allowed_annotation.dart';
1310
export './annotations/experimental_annotations.dart';
1411
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';
1514
export './annotations/must_handle_return_annotation.dart';
15+
export './annotations/no_futures_allowed_annotation.dart';

lib/src/annotations/must_be_strict_annotation.dart renamed to lib/src/annotations/must_be_strong_ref_annotation.dart

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -10,16 +10,16 @@
1010
// ▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓
1111
//.title~
1212

13-
const mustBeStrictOrError = MustBeStrictOrErrorAnnotation();
13+
const mustBeStrongRefOrError = MustBeStrongRefOrErrorAnnotation();
1414

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();
1818
}
1919

20-
const mustBeStrict = MustBeStrictAnnotation();
20+
const mustBeStrongRef = MustBeStrongRefAnnotation();
2121

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();
2525
}

0 commit comments

Comments
 (0)