| Index: runtime/vm/object.cc
|
| diff --git a/runtime/vm/object.cc b/runtime/vm/object.cc
|
| index 9639bc867962e16cb243a112a302ec532adfa4ed..69177fc6ea6d8927bae98e8cf51753291f2e3214 100644
|
| --- a/runtime/vm/object.cc
|
| +++ b/runtime/vm/object.cc
|
| @@ -8552,6 +8552,8 @@ void Script::PrintJSONImpl(JSONStream* stream, bool ref) const {
|
| }
|
| jsobj.AddProperty("library", lib);
|
| const String& source = String::Handle(Source());
|
| + jsobj.AddProperty("lineOffset", line_offset());
|
| + jsobj.AddProperty("columnOffset", col_offset());
|
| jsobj.AddPropertyStr("source", source);
|
|
|
| // Print the line number table
|
|
|