Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(134)

Side by Side Diff: modules/angular2/test/transform/two_deps_files/bar.dart

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
Patch Set: Created 5 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(Empty)
1 library bar;
2
3 import 'package:angular2/src/core/annotations/annotations.dart';
4 import 'foo.dart';
5
6 @Directive(context: const MyContext(contextString))
7 class Component2 {
8 final MyContext c;
9 final String generatedValue;
10 Component2(this.c, String inValue) {
11 generatedValue = 'generated ' + inValue;
12 }
13 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698