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

Single stepping does not stop at continue statements! #8976

Closed
larsbak opened this issue Mar 7, 2013 · 4 comments
Closed

Single stepping does not stop at continue statements! #8976

larsbak opened this issue Mar 7, 2013 · 4 comments
Assignees
Labels
area-vm Use area-vm for VM related issues, including code coverage, FFI, and the AOT and JIT backends.

Comments

@larsbak
Copy link

larsbak commented Mar 7, 2013

Single stepping stops at "return" but not at "continue".
Must be a bug.
//Lars

      |main() {
     2| for (int i = 0; i < 1; i++) {
     1| if (i == 0) {
     1| print("yes");
      | continue;
      | }
      | }
     1| return;
      |}

@DartBot
Copy link

DartBot commented Mar 7, 2013

This comment was originally written by @mhausner


This is "as designed". We can only stop at points where a call is made, not at any arbitrary position. Please discuss with Ivan whether this is an unacceptable solution.


cc @iposva-google.

@iposva-google
Copy link
Contributor

Removed Priority-Medium label.
Added Priority-Unassigned label.

@DartBot
Copy link

DartBot commented Jul 8, 2013

This comment was originally written by @mhausner


Ivan, could you please check with Lars whether there is need for action here or whether the bug can be closed with "As Designed"?

Thank you.


Set owner to @iposva-google.

@larsbak larsbak added Type-Defect area-vm Use area-vm for VM related issues, including code coverage, FFI, and the AOT and JIT backends. labels Jul 8, 2013
@mhausner
Copy link
Contributor

mhausner commented Dec 4, 2015

As designed.

@mhausner mhausner closed this as completed Dec 4, 2015
@kevmoo kevmoo removed the triaged label 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.
Projects
None yet
Development

No branches or pull requests

5 participants