在 Dartium 中调试 Dart - 断点关键字?
Debugging Dart in Dartium - Breakpoint Keyword?
在 Chrome 开发工具中调试 Javascript 时,使用保留关键字 'debugger' 会导致打开开发工具时出现断点。在 Dartium 中是否有调试飞镖代码的等效项?
从 Dart SDK 1.11.0 开始,有一个 debugger
function in the new dart:developer
库可以通过代码触发断点。您可以使用 when
参数传递可选条件并提供可选消息。
import 'dart:developer';
void main() {
debugger();
print('Not reached when a debugger is attached till the execution is continued');
}
如果编译为 JavaScript,则使用 debugger
关键字。
在 Chrome 开发工具中调试 Javascript 时,使用保留关键字 'debugger' 会导致打开开发工具时出现断点。在 Dartium 中是否有调试飞镖代码的等效项?
从 Dart SDK 1.11.0 开始,有一个 debugger
function in the new dart:developer
库可以通过代码触发断点。您可以使用 when
参数传递可选条件并提供可选消息。
import 'dart:developer';
void main() {
debugger();
print('Not reached when a debugger is attached till the execution is continued');
}
如果编译为 JavaScript,则使用 debugger
关键字。