| Index: runtime/vm/cpu.h
|
| ===================================================================
|
| --- runtime/vm/cpu.h (revision 3804)
|
| +++ runtime/vm/cpu.h (working copy)
|
| @@ -10,8 +10,8 @@
|
| namespace dart {
|
|
|
| // Forward Declarations.
|
| +class Error;
|
| class Instance;
|
| -class UnhandledException;
|
|
|
|
|
| class CPU : public AllStatic {
|
| @@ -22,11 +22,11 @@
|
| uword frame_pointer,
|
| const Instance& exception_object,
|
| const Instance& stacktrace_object);
|
| - static void JumpToUnhandledExceptionHandler(
|
| + static void JumpToErrorHandler(
|
| uword program_counter,
|
| uword stack_pointer,
|
| uword frame_pointer,
|
| - const UnhandledException& unhandled_exception);
|
| + const Error& error);
|
| static const char* Id();
|
| };
|
|
|
|
|