| Index: runtime/vm/object.h
|
| ===================================================================
|
| --- runtime/vm/object.h (revision 8117)
|
| +++ runtime/vm/object.h (working copy)
|
| @@ -1783,6 +1783,13 @@
|
|
|
| void Register() const;
|
|
|
| + bool IsDebuggable() const {
|
| + return raw_ptr()->debuggable_;
|
| + }
|
| + void set_debuggable(bool value) const {
|
| + raw_ptr()->debuggable_ = value;
|
| + }
|
| +
|
| RawString* DuplicateDefineErrorString(const String& entry_name,
|
| const Library& conflicting_lib) const;
|
| static RawLibrary* LookupLibrary(const String& url);
|
|
|