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

Unified Diff: runtime/vm/object.h

Issue 1930263002: Don't include dependent code arrays in snapshots. (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: Created 4 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
« no previous file with comments | « no previous file | runtime/vm/object.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/vm/object.h
diff --git a/runtime/vm/object.h b/runtime/vm/object.h
index 902ea91ed2b0515e3ffa8464f4976bc26a5b3e70..403044ece235d1d4a198b1bd421cb04a41c2bb87 100644
--- a/runtime/vm/object.h
+++ b/runtime/vm/object.h
@@ -1386,7 +1386,7 @@ class Class : public Object {
void DisableCHAOptimizedCode(const Class& subclass);
- RawArray* cha_codes() const { return raw_ptr()->cha_codes_; }
+ RawArray* cha_codes() const { return raw_ptr()->dependent_code_; }
siva 2016/04/29 21:04:24 This seems to violate our naming standard that we
rmacnak 2016/04/29 21:47:49 Renamed the accessors to [set_]dependent_code and
void set_cha_codes(const Array& value) const;
bool TraceAllocation(Isolate* isolate) const;
« no previous file with comments | « no previous file | runtime/vm/object.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698