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

Unified Diff: runtime/vm/raw_object.h

Issue 1071713003: - Remove JSCRE from the runtime. (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 5 years, 8 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: runtime/vm/raw_object.h
===================================================================
--- runtime/vm/raw_object.h (revision 44981)
+++ runtime/vm/raw_object.h (working copy)
@@ -1872,9 +1872,8 @@
RAW_HEAP_OBJECT_IMPLEMENTATION(JSRegExp);
RawObject** from() {
- return reinterpret_cast<RawObject**>(&ptr()->data_length_);
+ return reinterpret_cast<RawObject**>(&ptr()->num_bracket_expressions_);
}
- RawSmi* data_length_;
RawSmi* num_bracket_expressions_;
RawString* pattern_; // Pattern to be used for matching.
RawFunction* one_byte_function_;
@@ -1889,9 +1888,6 @@
// type: Uninitialized, simple or complex.
// flags: Represents global/local, case insensitive, multiline.
int8_t type_flags_;
-
- // Variable length data follows here.
- uint8_t* data() { OPEN_ARRAY_START(uint8_t, uint8_t); }
};

Powered by Google App Engine
This is Rietveld 408576698