Chromium Code Reviews| Index: runtime/vm/longjump.h |
| =================================================================== |
| --- runtime/vm/longjump.h (revision 3366) |
| +++ runtime/vm/longjump.h (working copy) |
| @@ -11,12 +11,14 @@ |
| namespace dart { |
| +class Error; |
| + |
| class LongJump : public ValueObject { |
| public: |
| LongJump() : top_(NULL) { } |
| jmp_buf* Set(); |
| - void Jump(int value, const char* msg); |
| + void Jump(int value, const Error& error); |
| private: |
| jmp_buf environment_; |