| 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 /// Interact with developer tools such as the debugger and inspector. | 5 /// Interact with developer tools such as the debugger and inspector. |
| 6 /// | 6 /// |
| 7 /// The dart:developer library is _unstable_ and its API might change slightly | 7 /// The dart:developer library is _unstable_ and its API might change slightly |
| 8 /// as a result of developer feedback. This library is platform dependent and | 8 /// as a result of developer feedback. This library is platform dependent and |
| 9 /// therefore it has implementations for both dart2js and the Dart VM. Both are | 9 /// therefore it has implementations for both dart2js and the Dart VM. Both are |
| 10 /// under development and may not support all operations yet. | 10 /// under development and may not support all operations yet. |
| 11 /// | 11 /// |
| 12 library dart.developer; | 12 library dart.developer; |
| 13 | 13 |
| 14 import 'dart:async'; | 14 import 'dart:async'; |
| 15 import 'dart:convert'; | 15 import 'dart:convert'; |
| 16 import 'dart:isolate' show SendPort; | 16 import 'dart:isolate' show SendPort; |
| 17 | 17 |
| 18 part 'extension.dart'; | 18 part 'extension.dart'; |
| 19 part 'profiler.dart'; | 19 part 'profiler.dart'; |
| 20 part 'timeline.dart'; |
| 20 | 21 |
| 21 /// If [when] is true, stop the program as if a breakpoint were hit at the | 22 /// If [when] is true, stop the program as if a breakpoint were hit at the |
| 22 /// following statement. | 23 /// following statement. |
| 23 /// | 24 /// |
| 24 /// Returns the value of [when]. Some debuggers may display [message]. | 25 /// Returns the value of [when]. Some debuggers may display [message]. |
| 25 /// | 26 /// |
| 26 /// NOTE: When invoked, the isolate will not return until a debugger | 27 /// NOTE: When invoked, the isolate will not return until a debugger |
| 27 /// continues execution. When running in the Dart VM the behaviour is the same | 28 /// continues execution. When running in the Dart VM the behaviour is the same |
| 28 /// regardless of whether or not a debugger is connected. When compiled to | 29 /// regardless of whether or not a debugger is connected. When compiled to |
| 29 /// JavaScript, this uses the "debugger" statement, and behaves exactly as | 30 /// JavaScript, this uses the "debugger" statement, and behaves exactly as |
| (...skipping 15 matching lines...) Expand all Loading... |
| 45 /// [error] (optional) an error object associated with this log event. | 46 /// [error] (optional) an error object associated with this log event. |
| 46 /// [stackTrace] (optional) a stack trace associated with this log event. | 47 /// [stackTrace] (optional) a stack trace associated with this log event. |
| 47 external void log(String message, | 48 external void log(String message, |
| 48 {DateTime time, | 49 {DateTime time, |
| 49 int sequenceNumber, | 50 int sequenceNumber, |
| 50 int level: 0, | 51 int level: 0, |
| 51 String name: '', | 52 String name: '', |
| 52 Zone zone, | 53 Zone zone, |
| 53 Object error, | 54 Object error, |
| 54 StackTrace stackTrace}); | 55 StackTrace stackTrace}); |
| OLD | NEW |