| Index: third_party/pkg/di/lib/annotations.dart
|
| diff --git a/third_party/pkg/di/lib/annotations.dart b/third_party/pkg/di/lib/annotations.dart
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..0f77b3bc583c9c3a4b734fe1416005e08f5bae44
|
| --- /dev/null
|
| +++ b/third_party/pkg/di/lib/annotations.dart
|
| @@ -0,0 +1,11 @@
|
| +library di.annotations;
|
| +
|
| +/**
|
| + * Annotation that can be applied to the library declaration listing all
|
| + * types for which type factories should be generated to be used
|
| + * by StaticInjector.
|
| + */
|
| +class Injectables {
|
| + final List<Type> types;
|
| + const Injectables(this.types);
|
| +}
|
|
|