Skip to content

Try Catch Finally  #111

@jameslahm

Description

@jameslahm

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 {
}

Metadata

Metadata

Assignees

Labels

No labels
No labels

Type

No type

Projects

No projects

Milestone

No milestone

Relationships

None yet

Development

No branches or pull requests

Issue actions