-
-
Notifications
You must be signed in to change notification settings - Fork 184
test: run lua 5.5 tests on the lua 5.5 wasm binding #1723
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
RealColdFry
wants to merge
5
commits into
TypeScriptToLua:master
Choose a base branch
from
RealColdFry:lua55-test-bindings
base: master
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
5 commits
Select commit
Hold shift + click to select a range
edb829e
test: run lua 5.5 tests on the lua 5.5 wasm binding
RealColdFry 7697025
fix: wrap nil error objects on lua 5.5 to preserve throw undefined ac…
RealColdFry 94d020e
docs: link lua 5.5 manual section 8.1 from error wrapping comments
RealColdFry 11b192a
what happens if we don't wrap?
RealColdFry 56281f2
revert to wrapping
RealColdFry 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
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,18 @@ | ||
| // Lua 5.5 replaces a `nil` error object with a string ("<no error object>") | ||
| // when an error propagates out of a protected call. This breaks `throw undefined` | ||
| // round-tripping through `pcall`. To preserve the original value, we route | ||
| // protected calls through `xpcall` with a message handler that wraps nil into | ||
| // this sentinel table (Lua 5.5 only mangles nil, not other values), and unwrap | ||
| // on the catch side. | ||
| // See: https://www.lua.org/manual/5.5/manual.html#8.1 | ||
| const ____TS__NilErrorObject: any = {}; | ||
|
|
||
| export function __TS__WrapErrorObject(this: void, value: any): any { | ||
| if (value === undefined) return ____TS__NilErrorObject; | ||
| return value; | ||
| } | ||
|
|
||
| export function __TS__UnwrapErrorObject(this: void, value: any): any { | ||
| if (value === ____TS__NilErrorObject) return undefined; | ||
| return value; | ||
| } |
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
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
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.
What would be the result if we did not do this workaround? Do we get failing tests? Are we getting unexpected type failures at runtime?
Uh oh!
There was an error while loading. Please reload this page.
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.
Running the below snippet
In Lua 5.0-5.4, LuaJIT, Luau (Lune) gives
while in 5.5:
Without the wrapper,
error(nil)in Lua 5.5 surfaces as the string"<no error object>"rather thannil. This breaks theerror.spec.ts"throw and catch undefined" test (https://github.com/TypeScriptToLua/TypeScriptToLua/actions/runs/25261709047/job/74069980641?pr=1723#step:6:250).Otherwise, in
if
doThing()threw undefined, on 5.5eis actually the string<no error object>at runtime.