| Index: runtime/vm/raw_object.cc
|
| diff --git a/runtime/vm/raw_object.cc b/runtime/vm/raw_object.cc
|
| index edbe107a46d23d83c71b9ace3b0924e431970e1d..15dfe26aecdd23e323c5756cbd7ee26b70dfb869 100644
|
| --- a/runtime/vm/raw_object.cc
|
| +++ b/runtime/vm/raw_object.cc
|
| @@ -199,7 +199,7 @@ intptr_t RawObject::SizeFromClass() const {
|
| uword tags = ptr()->tags_;
|
| intptr_t tags_size = SizeTag::decode(tags);
|
| if ((class_id == kArrayCid) && (instance_size > tags_size && tags_size > 0)) {
|
| - // TODO(22501): Array::MakeArray could be in the process of shrinking
|
| + // TODO(22501): Array::MakeFixedLength could be in the process of shrinking
|
| // the array (see comment therein), having already updated the tags but not
|
| // yet set the new length. Wait a millisecond and try again.
|
| int retries_remaining = 1000; // ... but not forever.
|
|
|