fix(benchmarks): use explicit `main()` function and do not reexport

Otherwise `pub` would not pick it up e.g. for `dart2js`.
This commit is contained in:
Tobias Bosch 2014-12-08 10:56:36 -08:00
parent 1cd848df55
commit 5793311421
1 changed files with 5 additions and 1 deletions

View File

@ -1 +1,5 @@
export {main} from './change_detection_benchmark';
import * as change_detection_benchmark from './change_detection_benchmark';
export function main() {
change_detection_benchmark.main();
}