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

Unified Diff: runtime/vm/object.h

Issue 2646073005: Precompiler: Rehash types after reassigning class ids. (Closed)
Patch Set: Created 3 years, 11 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/precompiler.h » ('j') | runtime/vm/precompiler.cc » ('J')
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 cf302d8f7e55807638131f9c46a21a040ebcb393..fdfb693d220a9b0269ad0dd59ceeb359218bf0a1 100644
--- a/runtime/vm/object.h
+++ b/runtime/vm/object.h
@@ -1745,6 +1745,7 @@ class TypeArguments : public Object {
FINAL_HEAP_OBJECT_IMPLEMENTATION(TypeArguments, Object);
friend class AbstractType;
friend class Class;
+ friend class ClearTypeHashVisitor;
};
@@ -6013,6 +6014,7 @@ class Type : public AbstractType {
FINAL_HEAP_OBJECT_IMPLEMENTATION(Type, AbstractType);
friend class Class;
friend class TypeArguments;
+ friend class ClearTypeHashVisitor;
};
@@ -6185,6 +6187,7 @@ class TypeParameter : public AbstractType {
FINAL_HEAP_OBJECT_IMPLEMENTATION(TypeParameter, AbstractType);
friend class Class;
+ friend class ClearTypeHashVisitor;
};
@@ -6276,6 +6279,7 @@ class BoundedType : public AbstractType {
FINAL_HEAP_OBJECT_IMPLEMENTATION(BoundedType, AbstractType);
friend class Class;
+ friend class ClearTypeHashVisitor;
};
« no previous file with comments | « no previous file | runtime/vm/precompiler.h » ('j') | runtime/vm/precompiler.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698