I cannot get breakpoints working in the Dart editor. I'm using a launch configuration to point to a URL for a local MVC3 site. Debugging is enabled. Oddly enough, dart editor will break on exceptions and come into focus, but completely ignores breakpoints. I've tried 32-bit dart editor with 32-bit jre, and 64-bit dart editor with 64-bit jre to no avail.
1 Answers
3
votes
I think you're running into this issue:
http://code.google.com/p/dart/issues/detail?id=3748
Basically, we're trying to set breakpoints based off the URLs of our internal localhost:3030 server, but the browser can't resolve those as the content is being loaded from a different url.
http://localhost:62939, run in checked mode, enable debugging. Like I said, dart editor breaks on exceptions, so dartium and dart editor are communicating. I think the best first step is to replicate my run configuration using a URL pointing to a locally hosted dart app and seeing if this issue is easily reproduced. - w.brian