| Index: runtime/vm/object.cc
|
| diff --git a/runtime/vm/object.cc b/runtime/vm/object.cc
|
| index 9b2e3194209fc655ea93cab4e97204235adb5d27..702e3a73a197b212bda528531144ff4d91fd843a 100644
|
| --- a/runtime/vm/object.cc
|
| +++ b/runtime/vm/object.cc
|
| @@ -8687,6 +8687,11 @@ RawString* Script::GenerateSource() const {
|
| }
|
|
|
|
|
| +void Script::set_compile_time_constants(const Array& value) const {
|
| + StorePointer(&raw_ptr()->compile_time_constants_, value.raw());
|
| +}
|
| +
|
| +
|
| RawGrowableObjectArray* Script::GenerateLineNumberArray() const {
|
| Zone* zone = Thread::Current()->zone();
|
| const GrowableObjectArray& info =
|
|
|