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

Unified Diff: packages/polymer_expressions/benchmark/parse.dart

Issue 2312183003: Removed Polymer from Observatory deps (Closed)
Patch Set: Created 4 years, 3 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « packages/polymer_expressions/benchmark/eval.dart ('k') | packages/polymer_expressions/codereview.settings » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: packages/polymer_expressions/benchmark/parse.dart
diff --git a/packages/polymer_expressions/benchmark/parse.dart b/packages/polymer_expressions/benchmark/parse.dart
deleted file mode 100644
index b131509f0955f22d0bdebde73868a45145c70df6..0000000000000000000000000000000000000000
--- a/packages/polymer_expressions/benchmark/parse.dart
+++ /dev/null
@@ -1,28 +0,0 @@
-// Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file
-// for details. All rights reserved. Use of this source code is governed by a
-// BSD-style license that can be found in the LICENSE file.
-
-library polymer_expressions.benchmark.parse;
-
-import 'package:benchmark_harness/benchmark_harness.dart';
-import 'package:polymer_expressions/parser.dart' show parse;
-
-/**
- * Measures pure parsing time of several expressions
- */
-class PolymerParseBenchmark extends BenchmarkBase {
- PolymerParseBenchmark() : super('PolymerParseBenchmark');
-
- run() {
- parse('foo.bar.baz');
- parse('f()');
- parse('(1 + 2) * 3');
- parse('1 + 2.0 + false + "abcdefg" + {"a": 1}');
- parse('(a * (b * (c * (d * (e)))))');
- parse('a(b(c(d(e(f)))))');
- }
-}
-
-main() {
- new PolymerParseBenchmark().report();
-}
« no previous file with comments | « packages/polymer_expressions/benchmark/eval.dart ('k') | packages/polymer_expressions/codereview.settings » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698