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

Unified Diff: client/dom/benchmarks/dromaeo/tests/RunnerSuite.dart

Issue 8966029: Report errors and warnings for hiding elements, issue 572. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Fixes for comments Created 9 years 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 | « no previous file | client/dom/generated/src/wrapping/_IDBKeyRangeWrappingImplementation.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: client/dom/benchmarks/dromaeo/tests/RunnerSuite.dart
diff --git a/client/dom/benchmarks/dromaeo/tests/RunnerSuite.dart b/client/dom/benchmarks/dromaeo/tests/RunnerSuite.dart
index aeeb369e2b4faba2b635f4cefb82c5bbd0a89d0f..a02c2fae949bc7cf4c347012902271ac89fd7211 100644
--- a/client/dom/benchmarks/dromaeo/tests/RunnerSuite.dart
+++ b/client/dom/benchmarks/dromaeo/tests/RunnerSuite.dart
@@ -44,7 +44,7 @@ class Suite {
* [:name:] The unique name of the test
* [:test:] A function holding the test to run
*/
- Suite test(String name, Test test) {
+ Suite test(String name, Test test_) {
_nTests++;
// Don't execute the test immediately.
return _addOperation(() {
@@ -62,7 +62,7 @@ class Suite {
int cur = new Date.now().value;
while ((cur - start) < 1000) {
- test();
+ test_();
cur = new Date.now().value;
runs++;
}
« no previous file with comments | « no previous file | client/dom/generated/src/wrapping/_IDBKeyRangeWrappingImplementation.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698