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

Unified Diff: runtime/vm/class_finalizer.h

Issue 1309113004: Change trail from GrowableObjectArray to ZoneGrowableArray. (Closed) Base URL: https://github.com/dart-lang/sdk.git@master
Patch Set: Formatting Created 5 years, 4 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/class_finalizer.cc » ('j') | runtime/vm/object.h » ('J')
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/vm/class_finalizer.h
diff --git a/runtime/vm/class_finalizer.h b/runtime/vm/class_finalizer.h
index de8cdde95c6c2bec2a00d9759b748da3217f0dfd..9d91e0cc98ba7cecab637557107ce6518e5ced23 100644
--- a/runtime/vm/class_finalizer.h
+++ b/runtime/vm/class_finalizer.h
@@ -144,12 +144,13 @@ class ClassFinalizer : public AllStatic {
GrowableArray<intptr_t>* visited);
static void FinalizeTypeParameters(const Class& cls,
GrowableObjectArray* pending_types = NULL);
- static void FinalizeTypeArguments(const Class& cls,
- const TypeArguments& arguments,
- intptr_t num_uninitialized_arguments,
- Error* bound_error,
- GrowableObjectArray* pending_types,
- GrowableObjectArray* trail);
+ static void FinalizeTypeArguments(
+ const Class& cls,
+ const TypeArguments& arguments,
+ intptr_t num_uninitialized_arguments,
+ Error* bound_error,
+ GrowableObjectArray* pending_types,
regis 2015/08/27 02:30:25 Will you do it next for pending_types?
srdjan 2015/08/27 16:09:49 Maybe. The priority is to fix issues for backgroun
+ ZoneGrowableArray<const Instance*>* trail);
static void CheckRecursiveType(const Class& cls,
const Type& type,
GrowableObjectArray* pending_types);
« no previous file with comments | « no previous file | runtime/vm/class_finalizer.cc » ('j') | runtime/vm/object.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698