fix return, break and continue inside try in async functions (#1706)#1707
Merged
Perryvw merged 5 commits intoApr 16, 2026
Merged
Conversation
Perryvw
reviewed
Apr 13, 2026
| ), | ||
| ]; | ||
| if (results.length > 0) { | ||
| stmts.push(lua.createAssignmentStatement(lua.createIdentifier("____returnValue"), results[0], statement)); |
Member
There was a problem hiding this comment.
Guess this breaks for multi-return, any easy wayt to serve those cases? (otherwise I'm okay with merging the easier change first)
Contributor
Author
There was a problem hiding this comment.
multi-return actuallyy works here 20b205dc because the multi-return values are wrapped into a single table before storage so results[0] captures everything. But it was somewhat confusing and relied on implicit assumptions so I split out transformReturnExpressionForTryCatch which returns a single lua.Expression instead of indexing into an array.
RealColdFry
added a commit
to RealColdFry/TypeScriptToLua
that referenced
this pull request
Apr 17, 2026
Reconciles with TypeScriptToLua#1707 (return/break/continue inside try in async). The merged transformAsyncTry wraps catch and finally in __TS__AsyncAwaiter (so await works inside them) and chains them via reassignment to ____try before the final __TS__Await, while preserving the new hasReturn/hasBreak/hasContinue flag tracking and post-checks.
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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
Fixes #1706