| Index: runtime/vm/service.cc
|
| diff --git a/runtime/vm/service.cc b/runtime/vm/service.cc
|
| index 5444ceb152190babf77fe5c96bebc9974f58c646..24c159842a07daf34ab5c95b57c30f583b0993d6 100644
|
| --- a/runtime/vm/service.cc
|
| +++ b/runtime/vm/service.cc
|
| @@ -2473,7 +2473,10 @@ static bool GetSourceReport(Thread* thread, JSONStream* js) {
|
| }
|
| }
|
| SourceReport report(report_set, compile_mode);
|
| - report.PrintJSON(js, script, start_pos, end_pos);
|
| + report.PrintJSON(js,
|
| + script,
|
| + TokenPosition(start_pos),
|
| + TokenPosition(end_pos));
|
| return true;
|
| }
|
|
|
|
|