Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(501)

Unified Diff: runtime/vm/object.h

Issue 2587673004: Include source in kernel. (Closed)
Patch Set: Changes based on feedback Created 4 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: runtime/vm/object.h
diff --git a/runtime/vm/object.h b/runtime/vm/object.h
index f3a4d29266e3bb331e2381c53724bc3dbd8bf53f..8e199cfbaf8f7c5fac330aa08c8207e02b486659 100644
--- a/runtime/vm/object.h
+++ b/runtime/vm/object.h
@@ -3518,8 +3518,6 @@ 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;
@@ -3571,6 +3569,7 @@ class Script : public Object {
void set_kind(RawScript::Kind value) const;
void set_load_timestamp(int64_t value) const;
void set_tokens(const TokenStream& value) const;
+ RawArray* line_starts() const { return raw_ptr()->line_starts_; }
static RawScript* New();

Powered by Google App Engine
This is Rietveld 408576698