| Index: runtime/vm/object.h
|
| diff --git a/runtime/vm/object.h b/runtime/vm/object.h
|
| index 9c7cf5936adee6b6e295af01806750ad46d4d924..99a9fb56fb2b47744d0a9be3a824909b12f9b20e 100644
|
| --- a/runtime/vm/object.h
|
| +++ b/runtime/vm/object.h
|
| @@ -2361,6 +2361,7 @@ class Script : public Object {
|
| RawScript::Kind kind() const {
|
| return static_cast<RawScript::Kind>(raw_ptr()->kind_);
|
| }
|
| + const char* GetKindAsCString() const;
|
| intptr_t line_offset() const { return raw_ptr()->line_offset_; }
|
| intptr_t col_offset() const { return raw_ptr()->col_offset_; }
|
|
|
|
|