We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
This issue was originally filed by [email protected]
What steps will reproduce the problem?
Dart Editor version 0.6.15_r25822 Dart SDK version 0.6.15.3_r25822
//////////////////// tiny example ////////////////////
abstract class MyMixin { void doIt() { print("I'm doin it!"); //Debugger ignores break point here } }
abstract class MyBase {}
class MyClass extends MyBase with MyMixin { MyClass() { } void doStuff() { doIt(); //Break point works here } }
void main() { var myClass = new MyClass(); myClass.doIt(); //breakpoint works here myClass.doStuff(); }
The text was updated successfully, but these errors were encountered:
Not sure if VM or Editor.
Added Area-VM, Triaged labels.
Sorry, something went wrong.
Set owner to @mhausner. Added Accepted label.
This comment was originally written by @mhausner
Fixed in r30080.
Added Fixed label.
No branches or pull requests
This issue was originally filed by [email protected]
What steps will reproduce the problem?
Dart Editor version 0.6.15_r25822
Dart SDK version 0.6.15.3_r25822
////////////////////
tiny example
////////////////////
abstract class MyMixin {
void doIt() {
print("I'm doin it!"); //Debugger ignores break point here
}
}
abstract class MyBase {}
class MyClass extends MyBase with MyMixin {
MyClass() {
}
void doStuff() {
doIt(); //Break point works here
}
}
void main() {
var myClass = new MyClass();
myClass.doIt(); //breakpoint works here
myClass.doStuff();
}
The text was updated successfully, but these errors were encountered: