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

Unified Diff: client/testing/unittest/shared.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: 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
Index: client/testing/unittest/shared.dart
diff --git a/client/testing/unittest/shared.dart b/client/testing/unittest/shared.dart
index d1836635b5f0997d682218481ae2e7d626edc9b9..26c4729a3194179ffd38fc0ac6b8c7130ae93ee4 100644
--- a/client/testing/unittest/shared.dart
+++ b/client/testing/unittest/shared.dart
@@ -336,16 +336,16 @@ class TestCase {
result = _PASS;
}
- void fail(String message, String stackTrace) {
+ void fail(String message_, String stackTrace_) {
result = _FAIL;
- this.message = message;
- this.stackTrace = stackTrace;
+ this.message = message_;
+ this.stackTrace = stackTrace_;
}
- void error(String message, String stackTrace) {
+ void error(String message_, String stackTrace_) {
result = _ERROR;
- this.message = message;
- this.stackTrace = stackTrace;
+ this.message = message_;
+ this.stackTrace = stackTrace_;
}
}

Powered by Google App Engine
This is Rietveld 408576698