| Index: runtime/vm/dart_entry.cc
|
| ===================================================================
|
| --- runtime/vm/dart_entry.cc (revision 24241)
|
| +++ runtime/vm/dart_entry.cc (working copy)
|
| @@ -236,7 +236,7 @@
|
| descriptor.SetAt(insert_index + kPositionOffset, pos);
|
| }
|
| // Set terminating null.
|
| - descriptor.SetAt(descriptor_len - 1, Object::Handle());
|
| + descriptor.SetAt(descriptor_len - 1, Object::null_object());
|
|
|
| // Share the immutable descriptor when possible by canonicalizing it.
|
| descriptor.MakeImmutable();
|
| @@ -271,7 +271,7 @@
|
| descriptor.SetAt(kPositionalCountIndex, arg_count);
|
|
|
| // Set terminating null.
|
| - descriptor.SetAt((descriptor_len - 1), Object::Handle());
|
| + descriptor.SetAt((descriptor_len - 1), Object::null_object());
|
|
|
| // Share the immutable descriptor when possible by canonicalizing it.
|
| descriptor.MakeImmutable();
|
|
|