Skip to content

Debugger doesn't break if break point is set on a Mixin method. #12361

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

Closed
DartBot opened this issue Aug 9, 2013 · 4 comments
Closed

Debugger doesn't break if break point is set on a Mixin method. #12361

DartBot opened this issue Aug 9, 2013 · 4 comments
Labels
area-vm Use area-vm for VM related issues, including code coverage, and the AOT and JIT backends.

Comments

@DartBot
Copy link

DartBot commented Aug 9, 2013

This issue was originally filed by [email protected]


What steps will reproduce the problem?

  1. Set a break point inside the body of a mixin method.
  2. Run. Debugger ignores break point.

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();
 
}

@anders-sandholm
Copy link
Contributor

Not sure if VM or Editor.


Added Area-VM, Triaged labels.

@iposva-google
Copy link
Contributor

Set owner to @mhausner.
Added Accepted label.

@DartBot
Copy link
Author

DartBot commented Nov 7, 2013

This comment was originally written by @mhausner


Fixed in r30080.

@DartBot
Copy link
Author

DartBot commented Nov 7, 2013

This comment was originally written by @mhausner


Added Fixed label.

@DartBot DartBot added Type-Defect area-vm Use area-vm for VM related issues, including code coverage, and the AOT and JIT backends. labels Nov 7, 2013
This issue was closed.
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, and the AOT and JIT backends.
Projects
None yet
Development

No branches or pull requests

4 participants