| Index: runtime/observatory/lib/src/service/object.dart
|
| diff --git a/runtime/observatory/lib/src/service/object.dart b/runtime/observatory/lib/src/service/object.dart
|
| index 684931632eb754dd25883d9927e4617a9c707279..8f81d7ef0e03ab7c7872a9ca86a50c6e6d600aad 100644
|
| --- a/runtime/observatory/lib/src/service/object.dart
|
| +++ b/runtime/observatory/lib/src/service/object.dart
|
| @@ -313,6 +313,7 @@ abstract class Coverage {
|
| var coverageList = coverage['coverage'];
|
| assert(coverageList != null);
|
| processCoverageData(coverageList);
|
| + return this;
|
| });
|
| }
|
| }
|
| @@ -2116,6 +2117,8 @@ class Script extends ServiceObject with Coverage {
|
| _hits[line] = hit;
|
| }
|
| _applyHitsToLines();
|
| + // Notify any Observers that this Script's state has changed.
|
| + notifyChange(null);
|
| }
|
|
|
| void _processSource(String source) {
|
| @@ -2136,6 +2139,8 @@ class Script extends ServiceObject with Coverage {
|
| lines.add(new ScriptLine(this, i + 1, sourceLines[i]));
|
| }
|
| _applyHitsToLines();
|
| + // Notify any Observers that this Script's state has changed.
|
| + notifyChange(null);
|
| }
|
|
|
| void _applyHitsToLines() {
|
|
|