 Chromium Code Reviews
 Chromium Code Reviews Issue 927373004:
  Initial commit of Dart transformer to generate constructor stubs, see https://github.com/angular/an…  (Closed) 
  Base URL: https://github.com/kegluneq/angular.git@master
    
  
    Issue 927373004:
  Initial commit of Dart transformer to generate constructor stubs, see https://github.com/angular/an…  (Closed) 
  Base URL: https://github.com/kegluneq/angular.git@master| Index: modules/angular2/test/transform/simple_annotation_files/bar.dart | 
| diff --git a/modules/angular2/test/transform/simple_annotation_files/bar.dart b/modules/angular2/test/transform/simple_annotation_files/bar.dart | 
| new file mode 100644 | 
| index 0000000000000000000000000000000000000000..bc846728d16ec69d1524c338142559f3e7d4c724 | 
| --- /dev/null | 
| +++ b/modules/angular2/test/transform/simple_annotation_files/bar.dart | 
| @@ -0,0 +1,8 @@ | 
| +library bar; | 
| + | 
| +import 'package:angular2/src/core/annotations/annotations.dart'; | 
| + | 
| +@Directive(context: 'soup') | 
| +class Component { | 
| + Component(); | 
| +} |