| Index: runtime/vm/raw_object.h
|
| diff --git a/runtime/vm/raw_object.h b/runtime/vm/raw_object.h
|
| index 3313d17dd98f7c6a21add152f25ff3bad1bc2cf5..c905d3f574ea297a21571fc84315ef7d422c8631 100644
|
| --- a/runtime/vm/raw_object.h
|
| +++ b/runtime/vm/raw_object.h
|
| @@ -369,6 +369,9 @@ class RawObject {
|
| void SetCanonical() {
|
| UpdateTagBit<CanonicalObjectTag>(true);
|
| }
|
| + void ClearCanonical() {
|
| + UpdateTagBit<CanonicalObjectTag>(false);
|
| + }
|
| bool IsCreatedFromSnapshot() const {
|
| return CreatedFromSnapshotTag::decode(ptr()->tags_);
|
| }
|
|
|