我正在使用webstorm。我已经设置了一个小样本应用程序。运行应用程序会在输出窗口中显示以下内容
C:/dart-sdk/bin/dart.exe --ignore-unrecognized-flags C:/Users/testuser/WebstormProjects/TestDart/TestMe.dart
You are using Windows
Process finished with exit code 0
但是在进行调试时,只需使用以下输出
C:/dart-sdk/bin/dart.exe --ignore-unrecognized-flags --debug:57939 C:/Users/testuser/WebstormProjects/TestDart/TestMe.dart
我在这行的main()函数中设置了一个断点,但它从未命中它
stdout.write("You are using ");
我没有防火墙,而且我认为我不需要安装dartium,因为这只是一个打印出来的标准控制台应用程序。
任何人都有成功吗?
感谢