| Index: runtime/vm/longjump.h
|
| diff --git a/runtime/vm/longjump.h b/runtime/vm/longjump.h
|
| index adf9449e80323111e500e73a49a5938215a3a6c8..ce4f813f7629954a58ad94c06701de378e38c482 100644
|
| --- a/runtime/vm/longjump.h
|
| +++ b/runtime/vm/longjump.h
|
| @@ -17,14 +17,14 @@ class Error;
|
| class LongJumpScope : public StackResource {
|
| public:
|
| LongJumpScope()
|
| - : StackResource(Isolate::Current()),
|
| + : StackResource(Thread::Current()),
|
| top_(NULL),
|
| - base_(Isolate::Current()->long_jump_base()) {
|
| - Isolate::Current()->set_long_jump_base(this);
|
| + base_(Thread::Current()->long_jump_base()) {
|
| + Thread::Current()->set_long_jump_base(this);
|
| }
|
|
|
| ~LongJumpScope() {
|
| - Isolate::Current()->set_long_jump_base(base_);
|
| + Thread::Current()->set_long_jump_base(base_);
|
| }
|
|
|
| jmp_buf* Set();
|
|
|