Index: runtime/vm/object.h |
=================================================================== |
--- runtime/vm/object.h (revision 38227) |
+++ runtime/vm/object.h (working copy) |
@@ -4171,11 +4171,14 @@ |
virtual const char* ToErrorCString() const; |
private: |
+ static RawUnhandledException* New(Heap::Space space = Heap::kNew); |
siva
2014/07/16 01:00:13
Where is this new 'New' function used? I could not
Florian Schneider
2014/07/16 11:15:42
Yes, it's used in the macro NEW_OBJECT macro.
|
+ |
void set_exception(const Instance& exception) const; |
void set_stacktrace(const Instance& stacktrace) const; |
FINAL_HEAP_OBJECT_IMPLEMENTATION(UnhandledException, Error); |
friend class Class; |
+ friend class ObjectStore; |
}; |