| Index: runtime/vm/object.h
|
| ===================================================================
|
| --- runtime/vm/object.h (revision 6969)
|
| +++ runtime/vm/object.h (working copy)
|
| @@ -3425,7 +3425,7 @@
|
| return raw_ptr()->type_arguments_;
|
| }
|
| virtual void SetTypeArguments(const AbstractTypeArguments& value) const {
|
| - raw_ptr()->type_arguments_ = value.Canonicalize();
|
| + raw_ptr()->type_arguments_ = value.raw();
|
| }
|
|
|
| virtual bool Equals(const Instance& other) const;
|
| @@ -3553,7 +3553,7 @@
|
| virtual void SetTypeArguments(const AbstractTypeArguments& value) const {
|
| const Array& contents = Array::Handle(data());
|
| contents.SetTypeArguments(value);
|
| - raw_ptr()->type_arguments_ = value.Canonicalize();
|
| + raw_ptr()->type_arguments_ = value.raw();
|
| }
|
|
|
| virtual bool Equals(const Instance& other) const;
|
| @@ -3794,7 +3794,7 @@
|
| return raw_ptr()->type_arguments_;
|
| }
|
| virtual void SetTypeArguments(const AbstractTypeArguments& value) const {
|
| - raw_ptr()->type_arguments_ = value.Canonicalize();
|
| + raw_ptr()->type_arguments_ = value.raw();
|
| }
|
| static intptr_t type_arguments_offset() {
|
| return OFFSET_OF(RawClosure, type_arguments_);
|
|
|