| Index: runtime/bin/vmservice/client/lib/src/observatory/script_source.dart
|
| diff --git a/runtime/bin/vmservice/client/lib/src/observatory/script_source.dart b/runtime/bin/vmservice/client/lib/src/observatory/script_source.dart
|
| deleted file mode 100644
|
| index 1c2acecd7f2d7a1b80bcb3ae3bd071fbe283589c..0000000000000000000000000000000000000000
|
| --- a/runtime/bin/vmservice/client/lib/src/observatory/script_source.dart
|
| +++ /dev/null
|
| @@ -1,42 +0,0 @@
|
| -// Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file
|
| -// for details. All rights reserved. Use of this source code is governed by a
|
| -// BSD-style license that can be found in the LICENSE file.
|
| -
|
| -part of observatory;
|
| -
|
| -class ScriptSourceLine extends Observable {
|
| - final int line;
|
| - final int numDigits;
|
| - @observable final String src;
|
| - @observable String paddedLine;
|
| - ScriptSourceLine(this.line, this.numDigits, this.src) {
|
| - paddedLine = '$line';
|
| - for (int i = paddedLine.length; i < numDigits; i++) {
|
| - paddedLine = ' $paddedLine';
|
| - }
|
| - }
|
| -}
|
| -
|
| -class ScriptSource extends Observable {
|
| - @observable String kind = '';
|
| - @observable String url = '';
|
| - @observable List<ScriptSourceLine> lines = toObservable([]);
|
| -
|
| - ScriptSource(Map response) {
|
| - kind = response['kind'];
|
| - url = response['name'];
|
| - buildSourceLines(response['source']);
|
| - }
|
| -
|
| - void buildSourceLines(String src) {
|
| - List<String> splitSrc = src.split('\n');
|
| - int numDigits = '${splitSrc.length+1}'.length;
|
| - for (int i = 0; i < splitSrc.length; i++) {
|
| - ScriptSourceLine sourceLine = new ScriptSourceLine(i+1, numDigits,
|
| - splitSrc[i]);
|
| - lines.add(sourceLine);
|
| - }
|
| - }
|
| -
|
| - String toString() => 'ScriptSource';
|
| -}
|
|
|