| Index: runtime/vm/raw_object.h
|
| diff --git a/runtime/vm/raw_object.h b/runtime/vm/raw_object.h
|
| index b80f9fa34a639bb187f58d18459ecf0655e9423a..bf279028dc5be3da1743594122169a17ff1da5b6 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_);
|
| }
|
|
|