Index: runtime/vm/exceptions.h |
diff --git a/runtime/vm/exceptions.h b/runtime/vm/exceptions.h |
index dab538ba595d2f709d8a09b7865fda50b6663322..8a5b9d39fdc1595e08f1093356f25bcc1f0ea961 100644 |
--- a/runtime/vm/exceptions.h |
+++ b/runtime/vm/exceptions.h |
@@ -28,8 +28,10 @@ class Exceptions : AllStatic { |
public: |
static const char* kCastErrorDstName; |
- static void Throw(const Instance& exception); |
- static void ReThrow(const Instance& exception, const Instance& stacktrace); |
+ static void Throw(Isolate* isolate, const Instance& exception); |
+ static void ReThrow(Isolate* isolate, |
+ const Instance& exception, |
+ const Instance& stacktrace); |
static void PropagateError(const Error& error); |
// Report a Javascript compatibility warning at the call site given by |