
Adds `benchmarks/benchpress` module and adjusts the compiler benchmarks to use it. Also adds the Angular 1.3 benchmark to the compiler benchmarks. Closes #202
9 lines
155 B
Dart
9 lines
155 B
Dart
library compiler_benchmark;
|
|
|
|
import './selector_benchmark.dart' as sbm;
|
|
import './compiler_benchmark.dart' as cbm;
|
|
|
|
main () {
|
|
sbm.main();
|
|
cbm.main();
|
|
} |