| Index: runtime/vm/raw_object.h
|
| diff --git a/runtime/vm/raw_object.h b/runtime/vm/raw_object.h
|
| index ee5450dee67887523d97ce065f842a60737838c2..c04354fa102ca3315c6ce45d5668b2148cc3ca5b 100644
|
| --- a/runtime/vm/raw_object.h
|
| +++ b/runtime/vm/raw_object.h
|
| @@ -427,6 +427,12 @@ class RawObject {
|
| bool IsCode() {
|
| return ((GetClassId() == kCodeCid));
|
| }
|
| + bool IsStackmap() {
|
| + return ((GetClassId() == kStackmapCid));
|
| + }
|
| + bool IsPcDescriptors() {
|
| + return ((GetClassId() == kPcDescriptorsCid));
|
| + }
|
|
|
| intptr_t Size() const {
|
| uword tags = ptr()->tags_;
|
|
|