Skip to content
New issue

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

Debugger does not stop at breakpoints in mixins #15746

Closed
DartBot opened this issue Dec 20, 2013 · 1 comment
Closed

Debugger does not stop at breakpoints in mixins #15746

DartBot opened this issue Dec 20, 2013 · 1 comment
Labels
area-vm Use area-vm for VM related issues, including code coverage, FFI, and the AOT and JIT backends. closed-not-planned Closed as we don't intend to take action on the reported issue

Comments

@DartBot
Copy link

DartBot commented Dec 20, 2013

This issue was originally filed by lry@google.com


In dart editor, the debugger does not stop in the code below.

main() {
  var m = new C();
  m.foo();
}

class Mix {
  foo() {
    print(1); // Add breakpoint here
  }
}

class Super { }

class C extends Super with Mix { }

@lrhn
Copy link
Member

lrhn commented Dec 20, 2013

Added Area-VM, Editor-Debugging, Triaged labels.

@DartBot DartBot added Type-Defect area-vm Use area-vm for VM related issues, including code coverage, FFI, and the AOT and JIT backends. labels Dec 20, 2013
@mit-mit mit-mit closed this as completed Sep 11, 2015
@kevmoo kevmoo added closed-not-planned Closed as we don't intend to take action on the reported issue and removed triaged labels Mar 1, 2016
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
area-vm Use area-vm for VM related issues, including code coverage, FFI, and the AOT and JIT backends. closed-not-planned Closed as we don't intend to take action on the reported issue
Projects
None yet
Development

No branches or pull requests

4 participants