Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(174)

Unified Diff: vm/raw_object.h

Issue 10807078: Address review comments from a previous CL. (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/runtime/
Patch Set: Created 8 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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
« vm/object.cc ('K') | « vm/object_store.cc ('k') | vm/raw_object_snapshot.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698