Reputation: 4209
I decided to rewrite some of my js stuff with dart in VS Code.
When I launch the dart console app in debug mode, and there is a bug somewhere, an errors_patch.dart file opens up showing line 27. How can I stop this file from opening?
@patch
@pragma("vm:external-name", "Error_throwWithStackTrace")
external static Never _throw(Object error, StackTrace stackTrace);
}
Upvotes: 2
Views: 1990
Reputation: 1661
Try the following.
Upvotes: 7