| Index: modules/angular2/test/transform/two_deps_files/bar.dart
|
| diff --git a/modules/angular2/test/transform/two_deps_files/bar.dart b/modules/angular2/test/transform/two_deps_files/bar.dart
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..1604b388a059011e53a64440ce358f259cd8c61f
|
| --- /dev/null
|
| +++ b/modules/angular2/test/transform/two_deps_files/bar.dart
|
| @@ -0,0 +1,13 @@
|
| +library bar;
|
| +
|
| +import 'package:angular2/src/core/annotations/annotations.dart';
|
| +import 'foo.dart';
|
| +
|
| +@Directive(context: const MyContext(contextString))
|
| +class Component2 {
|
| + final MyContext c;
|
| + final String generatedValue;
|
| + Component2(this.c, String inValue) {
|
| + generatedValue = 'generated ' + inValue;
|
| + }
|
| +}
|
|
|