w.brian
w.brian

Reputation: 17387

Breakpoints not working in dart editor

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.

Upvotes: 0

Views: 861

Answers (1)

Devon Carew
Devon Carew

Reputation: 500

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.

Upvotes: 3

Related Questions