| Index: vm/raw_object.h
|
| ===================================================================
|
| --- vm/raw_object.h (revision 9828)
|
| +++ vm/raw_object.h (working copy)
|
| @@ -85,9 +85,9 @@
|
| V(ExternalUint64Array) \
|
| V(ExternalFloat32Array) \
|
| V(ExternalFloat64Array) \
|
| - V(Closure) \
|
| V(Stacktrace) \
|
| V(JSRegExp) \
|
| + V(Closure) \
|
|
|
| #define CLASS_LIST(V) \
|
| V(Object) \
|
| @@ -1516,8 +1516,8 @@
|
| kExternalUint64Array == kByteArray + 18 &&
|
| kExternalFloat32Array == kByteArray + 19 &&
|
| kExternalFloat64Array == kByteArray + 20 &&
|
| - kClosure == kByteArray + 21);
|
| - return (index >= kByteArray && index <= kClosure);
|
| + kStacktrace == kByteArray + 21);
|
| + return (index >= kByteArray && index < kStacktrace);
|
| }
|
|
|
| } // namespace dart
|
|
|