| Index: runtime/vm/object.h
|
| diff --git a/runtime/vm/object.h b/runtime/vm/object.h
|
| index 83330e43036b24cdc95105398bbde70e2e873ae5..c3d39af7ec4ccca3d5e1de1c4b6c3df2fd0c2fab 100644
|
| --- a/runtime/vm/object.h
|
| +++ b/runtime/vm/object.h
|
| @@ -3396,6 +3396,11 @@ class Script : public Object {
|
| // The load time in milliseconds since epoch.
|
| int64_t load_timestamp() const { return raw_ptr()->load_timestamp_; }
|
|
|
| + RawArray* compile_time_constants() const {
|
| + return raw_ptr()->compile_time_constants_;
|
| + }
|
| + void set_compile_time_constants(const Array& value) const;
|
| +
|
| RawTokenStream* tokens() const { return raw_ptr()->tokens_; }
|
|
|
| void Tokenize(const String& private_key,
|
|
|