| Index: runtime/vm/object.h
|
| diff --git a/runtime/vm/object.h b/runtime/vm/object.h
|
| index c6bc1219907e6448c9f620071ca4c36a799d4d71..970d5cd687b112725d77aaadf30e82595b3db056 100644
|
| --- a/runtime/vm/object.h
|
| +++ b/runtime/vm/object.h
|
| @@ -274,6 +274,10 @@ class Object {
|
| ASSERT(!IsNull());
|
| raw()->SetCanonical();
|
| }
|
| + void ClearCanonical() const {
|
| + ASSERT(!IsNull());
|
| + raw()->ClearCanonical();
|
| + }
|
| intptr_t GetClassId() const {
|
| return !raw()->IsHeapObject() ?
|
| static_cast<intptr_t>(kSmiCid) : raw()->GetClassId();
|
|
|