OLD | NEW |
1 // Copyright (c) 2015, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2015, the Dart project authors. Please see the AUTHORS file |
2 // for details. All rights reserved. Use of this source code is governed by a | 2 // for details. All rights reserved. Use of this source code is governed by a |
3 // BSD-style license that can be found in the LICENSE file. | 3 // BSD-style license that can be found in the LICENSE file. |
4 | 4 |
5 import 'dart:isolate'; | 5 import 'dart:isolate'; |
| 6 import 'dart:_internal'; |
6 | 7 |
7 @patch bool debugger({bool when: true, | 8 @patch bool debugger({bool when: true, |
8 String message}) native "Developer_debugger"; | 9 String message}) native "Developer_debugger"; |
9 | 10 |
10 @patch Object inspect(Object object) native "Developer_inspect"; | 11 @patch Object inspect(Object object) native "Developer_inspect"; |
11 | 12 |
12 @patch void log(String message, | 13 @patch void log(String message, |
13 {DateTime time, | 14 {DateTime time, |
14 int sequenceNumber, | 15 int sequenceNumber, |
15 int level: 0, | 16 int level: 0, |
(...skipping 125 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
141 sb.write('"result":'); | 142 sb.write('"result":'); |
142 } | 143 } |
143 sb.write('${response._toString()},'); | 144 sb.write('${response._toString()},'); |
144 if (id is String) { | 145 if (id is String) { |
145 sb.write('"id":"$id"}'); | 146 sb.write('"id":"$id"}'); |
146 } else { | 147 } else { |
147 sb.write('"id":$id}'); | 148 sb.write('"id":$id}'); |
148 } | 149 } |
149 replyPort.send(sb.toString()); | 150 replyPort.send(sb.toString()); |
150 } | 151 } |
OLD | NEW |