Index: runtime/vm/snapshot_test.dart |
diff --git a/runtime/vm/snapshot_test.dart b/runtime/vm/snapshot_test.dart |
index 50ed111e48eb1c8ea922ed146d739fdd23cb154e..f9c2336dfe67873f75b5b7878740d9fd9057e5b6 100644 |
--- a/runtime/vm/snapshot_test.dart |
+++ b/runtime/vm/snapshot_test.dart |
@@ -5,6 +5,12 @@ |
import 'dart:isolate'; |
import 'dart:async'; |
+class Expect { |
+ static void equals(x, y) { |
+ if (x != y) throw new RuntimeError('not equal'); |
+ } |
+} |
+ |
class Fields { |
Fields(int i, int j) : fld1 = i, fld2 = j, fld5 = true {} |
int fld1; |