| Index: runtime/vm/raw_object.h
|
| ===================================================================
|
| --- runtime/vm/raw_object.h (revision 11192)
|
| +++ runtime/vm/raw_object.h (working copy)
|
| @@ -90,6 +90,7 @@
|
| V(Stacktrace) \
|
| V(JSRegExp) \
|
| V(WeakProperty) \
|
| + V(DartFunction) \
|
| V(Closure) \
|
|
|
| #define CLASS_LIST(V) \
|
| @@ -1385,6 +1386,11 @@
|
| };
|
|
|
|
|
| +class RawDartFunction : public RawInstance {
|
| + RAW_HEAP_OBJECT_IMPLEMENTATION(DartFunction);
|
| +};
|
| +
|
| +
|
| class RawClosure : public RawInstance {
|
| RAW_HEAP_OBJECT_IMPLEMENTATION(Closure);
|
|
|
|
|