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

Unified Diff: runtime/vm/raw_object.h

Issue 2485993002: VM: Support bootstrapping core libraries from Kernel binaries instead of source. (Closed)
Patch Set: Done Created 4 years, 1 month 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
diff --git a/runtime/vm/raw_object.h b/runtime/vm/raw_object.h
index ab37588eeb561c0a14a02b68227704de5aa42da4..30ed40bec42f735699e1c82dfd8a5d9a8b9e2e71 100644
--- a/runtime/vm/raw_object.h
+++ b/runtime/vm/raw_object.h
@@ -706,10 +706,11 @@ class RawUnresolvedClass : public RawObject {
RAW_HEAP_OBJECT_IMPLEMENTATION(UnresolvedClass);
RawObject** from() {
- return reinterpret_cast<RawObject**>(&ptr()->library_prefix_);
+ return reinterpret_cast<RawObject**>(&ptr()->library_or_library_prefix_);
}
- RawLibraryPrefix* library_prefix_; // Library prefix qualifier for the ident.
- RawString* ident_; // Name of the unresolved identifier.
+ RawObject* library_or_library_prefix_; // Library or library prefix qualifier
+ // for the ident.
+ RawString* ident_; // Name of the unresolved identifier.
RawObject** to() { return reinterpret_cast<RawObject**>(&ptr()->ident_); }
TokenPosition token_pos_;
};

Powered by Google App Engine
This is Rietveld 408576698