| Index: runtime/vm/object.h
|
| diff --git a/runtime/vm/object.h b/runtime/vm/object.h
|
| index 6145fde64da0cb37a555475b8282f2f904a42ffd..bf2b0098a94093a7ca0a018316485a3ee4844c14 100644
|
| --- a/runtime/vm/object.h
|
| +++ b/runtime/vm/object.h
|
| @@ -3503,6 +3503,10 @@ class Script : public Object {
|
|
|
| RawTokenStream* tokens() const { return raw_ptr()->tokens_; }
|
|
|
| + RawArray* line_starts() const { return raw_ptr()->line_starts_; }
|
| +
|
| + void set_line_starts(const Array& value) const;
|
| +
|
| void Tokenize(const String& private_key, bool use_shared_tokens = true) const;
|
|
|
| RawLibrary* FindLibrary() const;
|
|
|