| Index: runtime/vm/object.h
|
| diff --git a/runtime/vm/object.h b/runtime/vm/object.h
|
| index bf8f578c1de05621be8abbb7e99547f6001695d9..41dc35df6da8cfa88ca3d1f1f0104e2dc6351fdb 100644
|
| --- a/runtime/vm/object.h
|
| +++ b/runtime/vm/object.h
|
| @@ -1528,8 +1528,8 @@ class UnresolvedClass : public Object {
|
| };
|
|
|
|
|
| -typedef ZoneGrowableArray<const AbstractType*> Trail;
|
| -typedef ZoneGrowableArray<const AbstractType*>* TrailPtr;
|
| +typedef ZoneGrowableHandlePtrArray<const AbstractType> Trail;
|
| +typedef ZoneGrowableHandlePtrArray<const AbstractType>* TrailPtr;
|
|
|
| // A TypeArguments is an array of AbstractType.
|
| class TypeArguments : public Object {
|
| @@ -2699,10 +2699,11 @@ FOR_EACH_FUNCTION_KIND_BIT(DEFINE_BIT)
|
|
|
| static RawFunction* New();
|
|
|
| - void BuildSignatureParameters(bool instantiate,
|
| - NameVisibility name_visibility,
|
| - const TypeArguments& instantiator,
|
| - GrowableArray<const String*>* pieces) const;
|
| + void BuildSignatureParameters(
|
| + bool instantiate,
|
| + NameVisibility name_visibility,
|
| + const TypeArguments& instantiator,
|
| + GrowableHandlePtrArray<const String>* pieces) const;
|
| RawString* BuildSignature(bool instantiate,
|
| NameVisibility name_visibility,
|
| const TypeArguments& instantiator) const;
|
|
|