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

Try Catch Finally #111

Open
jameslahm opened this issue Jul 21, 2021 · 0 comments
Open

Try Catch Finally #111

jameslahm opened this issue Jul 21, 2021 · 0 comments
Assignees

Comments

@jameslahm
Copy link
Member

This issue was used to track all problems about the try-catch finally statement problem.

Known Issues: #7
Pr: #60

Known Problems:

  • throw in catch clause
try {
} catch {
  throw 123;
} finally {
}
  • throw in a inner function
try {
} catch {
  ThrowErrorFunc()
} finally {
}
  • return in try clause
try {
 return 1
} catch {
} finally {
}
  • return in catch clause
try {
} catch {
  return 1
} finally {
}
@jameslahm jameslahm self-assigned this Jul 21, 2021
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant