-
-
Notifications
You must be signed in to change notification settings - Fork 698
[lua] Add regression test for pcall return wrapping #12740
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
Open
jdonaldson
wants to merge
2
commits into
HaxeFoundation:development
Choose a base branch
from
jdonaldson:lua-pcall-return-test
base: development
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
Show all changes
2 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,103 @@ | ||
| package unit.issues; | ||
|
|
||
| class Issue7350 extends Test { | ||
| // Return null through try-catch: null must propagate correctly, | ||
| // not be confused with _hx_pcall_default sentinel (Lua-specific). | ||
| function returnNullFromTry():Dynamic { | ||
| try { | ||
| return null; | ||
| } catch (e:Dynamic) { | ||
| return "error"; | ||
| } | ||
| } | ||
|
|
||
| // Return false through try-catch: falsy values must propagate. | ||
| function returnFalseFromTry():Bool { | ||
| try { | ||
| return false; | ||
| } catch (e:Dynamic) { | ||
| return true; | ||
| } | ||
| } | ||
|
|
||
| // Return zero through try-catch. | ||
| function returnZeroFromTry():Int { | ||
| try { | ||
| return 0; | ||
| } catch (e:Dynamic) { | ||
| return -1; | ||
| } | ||
| } | ||
|
|
||
| // Try body falls through without returning: code after try-catch | ||
| // must execute (pcall sentinel must NOT trigger a return). | ||
| function fallThroughTry():Int { | ||
| var x = 1; | ||
| try { | ||
| x = 2; | ||
| } catch (e:Dynamic) { | ||
| x = 3; | ||
| } | ||
| return x + 10; | ||
| } | ||
|
|
||
| // Exception in try: catch block should handle it and return. | ||
| function returnFromCatch():String { | ||
| try { | ||
| throw "boom"; | ||
| } catch (e:Dynamic) { | ||
| return "caught"; | ||
| } | ||
| } | ||
|
|
||
| // Nested try-catch: inner return must propagate through outer. | ||
| function nestedTryCatch():Int { | ||
| try { | ||
| try { | ||
| return 99; | ||
| } catch (e:Dynamic) { | ||
| return -1; | ||
| } | ||
| } catch (e:Dynamic) { | ||
| return -2; | ||
| } | ||
| } | ||
|
|
||
| // Try-catch in a loop: return exits the function, not just the loop. | ||
| function returnFromTryInLoop():Int { | ||
| for (i in 0...5) { | ||
| try { | ||
| if (i == 3) | ||
| return i; | ||
| } catch (e:Dynamic) { | ||
| return -1; | ||
| } | ||
| } | ||
| return -2; | ||
| } | ||
|
|
||
| // Try-catch where try falls through and catch is not entered: | ||
| // subsequent code must see side effects from the try body. | ||
| function sideEffectsInTry():String { | ||
| var buf = new StringBuf(); | ||
| buf.add("a"); | ||
| try { | ||
| buf.add("b"); | ||
| } catch (e:Dynamic) { | ||
| buf.add("x"); | ||
| } | ||
| buf.add("c"); | ||
| return buf.toString(); | ||
| } | ||
|
|
||
| function test() { | ||
| eq(null, returnNullFromTry()); | ||
| eq(false, returnFalseFromTry()); | ||
| eq(0, returnZeroFromTry()); | ||
| eq(12, fallThroughTry()); | ||
| eq("caught", returnFromCatch()); | ||
| eq(99, nestedTryCatch()); | ||
| eq(3, returnFromTryInLoop()); | ||
| eq("abc", sideEffectsInTry()); | ||
| } | ||
| } | ||
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
For this function, haxe currently generates:
from what I can tell in this case the
doenddoesn't make much of a difference?