调试Dartium中的Dart - 断点关键字?

时间:2015-06-29 00:43:15

标签: dart dartium

在Chrome开发者工具中调试Javascript时,使用保留关键字' debugger'当Dev Tools打开时,会导致断点发生。是否在Dartium中调试dart代码?

1 个答案:

答案 0 :(得分:4)

自Dart SDK 1.11.0起,新debugger库中有一个dart:developer函数可通过代码触发断点。您可以使用when参数传递可选条件,并提供可选消息。

import 'dart:developer';

void main() {
  debugger();
  print('Not reached when a debugger is attached till the execution is continued');
}

如果已编译为JavaScript,则会使用debugger关键字。