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

Unified Diff: tests/compiler/dart2js_foreign/native_exceptions1_test.dart

Issue 10993059: Stop using the Hashable interface. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Another space removed. Created 8 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
Index: tests/compiler/dart2js_foreign/native_exceptions1_test.dart
diff --git a/tests/compiler/dart2js_foreign/native_exceptions1_test.dart b/tests/compiler/dart2js_foreign/native_exceptions1_test.dart
index 0368c5842a857f9f726b18a04e4b2ce5b5e0f0dd..bfd945d05d497777e3beafc372f552c53d01b6a2 100644
--- a/tests/compiler/dart2js_foreign/native_exceptions1_test.dart
+++ b/tests/compiler/dart2js_foreign/native_exceptions1_test.dart
@@ -16,7 +16,7 @@
// The exception type.
@native("*E")
-class E {
+class E {
@native E._used(); // Bogus native constructor, called only from fake body.
final int code;
@@ -24,7 +24,7 @@ class E {
// Type with exception-throwing methods.
@native("*A")
-class A {
+class A {
@native op(int x) {
// Fake body calls constructor to mark the exception class (E) as used.
throw new E._used();

Powered by Google App Engine
This is Rietveld 408576698