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

Side by Side Diff: third_party/pkg/di/benchmark/module_benchmark.dart

Issue 1086713003: Remove everything but markdown from third_party (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 5 years, 8 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 | Annotate | Revision Log
OLDNEW
(Empty)
1 import 'package:benchmark_harness/benchmark_harness.dart';
2 import 'package:di/di.dart';
3
4 import 'injector_benchmark_common.dart';
5
6 class ModuleBenchmark extends BenchmarkBase {
7 var injectorFactory;
8
9 ModuleBenchmark() : super('ModuleBenchmark');
10
11 void run() {
12 var m = new Module()
13 ..type(A)
14 ..type(B)
15 ..type(C)
16 ..type(D)
17 ..type(E);
18 }
19 }
20
21 main() {
22 new ModuleBenchmark().report();
23 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698