chore(build): Make PRs 15m faster.

Don't precompile Dart2JS for pull requests, instead serve the dart
sources with pub serve. We were already testing with Dartium so
all we lose is some test coverage of defects exposed only by the
Dart2JS transpiler.
This still runs the dart transformer.

Fixes #3030
This commit is contained in:
Alex Eagle
2015-07-20 15:54:30 -07:00
parent 476988876c
commit 51e6f33d32
11 changed files with 128 additions and 32 deletions

View File

@ -56,33 +56,33 @@ createTemplate(String html) {
return div;
}
@Directive(selector: '[dir0]', map: const {'attr0': '=>prop'})
@Decorator(selector: '[dir0]', map: const {'attr0': '=>prop'})
class Dir0 {
Object prop;
}
@Directive(selector: '[dir1]', map: const {'attr1': '=>prop'})
@Decorator(selector: '[dir1]', map: const {'attr1': '=>prop'})
class Dir1 {
Object prop;
constructor(Dir0 dir0) {}
}
@Directive(selector: '[dir2]', map: const {'attr2': '=>prop'})
@Decorator(selector: '[dir2]', map: const {'attr2': '=>prop'})
class Dir2 {
Object prop;
constructor(Dir1 dir1) {}
}
@Directive(selector: '[dir3]', map: const {'attr3': '=>prop'})
@Decorator(selector: '[dir3]', map: const {'attr3': '=>prop'})
class Dir3 {
Object prop;
constructor(Dir2 dir2) {}
}
@Directive(selector: '[dir4]', map: const {'attr4': '=>prop'})
@Decorator(selector: '[dir4]', map: const {'attr4': '=>prop'})
class Dir4 {
Object prop;