-
Notifications
You must be signed in to change notification settings - Fork 3.4k
Enable WASM_BIGINT by default #19156
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
Closed
Closed
Changes from all commits
Commits
Show all changes
51 commits
Select commit
Hold shift + click to select a range
ee34a80
yolo
kripken 5b5e426
make it work
kripken 520301b
fix
kripken 85793ac
fix closure
kripken 22393a4
Merge remote-tracking branch 'origin/main' into safari.bigint
kripken 9fe22ab
fix wasm2js
kripken e255dad
fix test
kripken e1108d6
fix
kripken 314cf8a
fix
kripken a52372d
cleanup
kripken c64adf2
more
kripken e7259ed
fix
kripken 09ea912
fixflake8
kripken 6699531
work
kripken d907b0e
fix
kripken af838e7
fix
kripken 9aac743
fix
kripken 5142300
work
kripken 71ca03a
feedback
kripken d23687e
update test
kripken 83165d1
fix
kripken 0fb2458
try to fix test_dyncall_specific
kripken 08c7170
Merge remote-tracking branch 'origin/main' into safari.bigint
kripken d1e4aec
fix old node version handling in common.py (maybe)
kripken 2ae89c5
fix
kripken 3f3c561
fix
kripken bf566aa
fix
kripken 9459701
fix
kripken 8dbb1ae
more test workarounds
kripken b107f47
Merge remote-tracking branch 'origin/main' into safari.bigint
kripken 6b71f83
Merge remote-tracking branch 'origin/main' into safari.bigint
kripken 6973fea
Merge remote-tracking branch 'origin/main' into safari.bigint
kripken 560120a
fix
kripken 84836b2
fix
kripken 356a840
Explain safari-bigint issue and set version to 15
kripken 00aab91
Merge remote-tracking branch 'origin/main' into safari.bigint
kripken 0ca6930
Merge remote-tracking branch 'origin/main' into safari.bigint
kripken 5985cdd
fix
kripken 8566684
fix
kripken c35d241
Merge remote-tracking branch 'origin/main' into safari.bigint
kripken b537cc7
fix
kripken 339b323
fix
kripken 400f01e
fix
kripken 62366ca
clean
kripken 2f8f82c
waka
kripken 8eab1f5
fix
kripken c93f72f
comment
kripken 568ee40
fix
kripken fe12dc0
flip
kripken a42cb9e
remove =1s
kripken 4998ef6
merge [ci skip]
kripken 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
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
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
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 |
---|---|---|
@@ -1,2 +1 @@ | ||
received 1,4,-1,9. | ||
Received 42 | ||
Received 42 |
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 |
---|---|---|
|
@@ -92,7 +92,6 @@ | |
'wasmfs', | ||
'wasm64', | ||
'wasm64l', | ||
'bigint', | ||
] | ||
|
||
|
||
|
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.
Are there any remaining callers of
node_bigint_flags
?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.
This one is not needed, but there are still two uses after it, in
emcc.py
andgen_struct_info.py
which I am not sure about.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.
To remove it in them, we might need to add node version checks...