Chromium Code Reviews| Index: modules/angular2/test/transform/two_deps_files/foo.dart |
| diff --git a/modules/angular2/test/transform/two_deps_files/foo.dart b/modules/angular2/test/transform/two_deps_files/foo.dart |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..3a081616fb28e85d0a1ec94dd3693787bd7c13c2 |
| --- /dev/null |
| +++ b/modules/angular2/test/transform/two_deps_files/foo.dart |
| @@ -0,0 +1,8 @@ |
| +library foo; |
| + |
| +const contextString = 'soup'; |
| + |
| +class MyContext { |
| + final String s; |
| + const MyContext(this.s); |
| +} |