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

Support Label statements #548

Closed
jasonwilliams opened this issue Jul 5, 2020 · 1 comment · Fixed by #549
Closed

Support Label statements #548

jasonwilliams opened this issue Jul 5, 2020 · 1 comment · Fixed by #549
Assignees
Labels
enhancement New feature or request Hacktoberfest Hacktoberfest 2021 - https://hacktoberfest.digitalocean.com
Milestone

Comments

@jasonwilliams
Copy link
Member

ECMASCript feature
https://tc39.es/ecma262/#sec-labelled-statements

Example code

loop1:
for (let i = 0; i < 5; i++) {
  if (i === 1) {
    continue loop1;
  }
  str = str + i;
}
@jasonwilliams jasonwilliams added the enhancement New feature or request label Jul 5, 2020
@jasonwilliams jasonwilliams self-assigned this Jul 5, 2020
@jasonwilliams jasonwilliams added this to the v0.10.0 milestone Jul 5, 2020
@jasonwilliams jasonwilliams added the Hacktoberfest Hacktoberfest 2021 - https://hacktoberfest.digitalocean.com label Sep 28, 2020
@jasonwilliams
Copy link
Member Author

This is fixed in master

@HalidOdat HalidOdat linked a pull request Sep 28, 2020 that will close this issue
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
enhancement New feature or request Hacktoberfest Hacktoberfest 2021 - https://hacktoberfest.digitalocean.com
Projects
None yet
Development

Successfully merging a pull request may close this issue.

1 participant