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

Unified Diff: runtime/lib/errors_patch.dart

Issue 17527003: Fix expectation for 53-bit-overflow. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 years, 6 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 | « no previous file | tests/standalone/standalone.status » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/lib/errors_patch.dart
diff --git a/runtime/lib/errors_patch.dart b/runtime/lib/errors_patch.dart
index 1359d1586298b890fb85eb1f87ac6c920e70265b..f52ff8f14a582cadd5c8e6e5d6611e477b662b9f 100644
--- a/runtime/lib/errors_patch.dart
+++ b/runtime/lib/errors_patch.dart
@@ -171,8 +171,8 @@ patch class NoSuchMethodError {
}
class _FiftyThreeBitOverflowError implements Error {
- final Object value;
+ final Object _value;
- const _FiftyThreeBitOverflowError(this.value);
- String toString() => "53-bit Overflow: $value";
+ const _FiftyThreeBitOverflowError(this._value);
+ String toString() => "53-bit Overflow: $_value";
}
« no previous file with comments | « no previous file | tests/standalone/standalone.status » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698