| Index: runtime/vm/service.cc
|
| diff --git a/runtime/vm/service.cc b/runtime/vm/service.cc
|
| index 3d5739faafe5b061da2984d5f864fef3522f90f3..3b0f33d51fc2a29964594facd824905f63ac8287 100644
|
| --- a/runtime/vm/service.cc
|
| +++ b/runtime/vm/service.cc
|
| @@ -2415,7 +2415,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,
|
| + TokenDescriptor(start_pos),
|
| + TokenDescriptor(end_pos));
|
| return true;
|
| }
|
|
|
|
|