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

Bug related to Nested for #38

Open
PjrCodes opened this issue Jul 7, 2020 · 0 comments
Open

Bug related to Nested for #38

PjrCodes opened this issue Jul 7, 2020 · 0 comments
Assignees
Labels
bug Something isn't working

Comments

@PjrCodes
Copy link
Owner

PjrCodes commented Jul 7, 2020

for(;;)
    for(;;)
        a;

will become

for(;;) {
    for(;;) {
}
        a;
    }

possible issue: The Wrong index is being used to check for semicolon and the index of the for(;;) itself is given.

this is also one of the problems behind #36 , CASE 3

@PjrCodes PjrCodes self-assigned this Jul 7, 2020
@PjrCodes PjrCodes added the bug Something isn't working label Jul 7, 2020
Repository owner locked and limited conversation to collaborators Mar 22, 2021
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
bug Something isn't working
Projects
None yet
Development

No branches or pull requests

1 participant