| Index: runtime/vm/object.h
|
| diff --git a/runtime/vm/object.h b/runtime/vm/object.h
|
| index e3ea9fadc00912cb0b7776e17f74429e3d4e6ba7..17e80f46ef9e98ac0a08d8117f5b3b6e4d452094 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();
|
|
|