Skip to content

Commit

Permalink
Nightly v1.0.36-nightly.20241121 [ci skip]
Browse files Browse the repository at this point in the history
  • Loading branch information
actions-user committed Nov 21, 2024
1 parent 2674223 commit c6e6592
Show file tree
Hide file tree
Showing 11 changed files with 21 additions and 20 deletions.
2 changes: 1 addition & 1 deletion bin/wasm-decompile

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion bin/wasm-interp

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion bin/wasm-objdump

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion bin/wasm-stats

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion bin/wasm-strip

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion bin/wasm-validate

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion bin/wasm2c

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion bin/wasm2wat

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion bin/wat2wasm

Large diffs are not rendered by default.

21 changes: 11 additions & 10 deletions index.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion wabt
Submodule wabt updated 47 files
+3 −0 include/wabt/binary-reader-logging.h
+5 −0 include/wabt/binary-reader-nop.h
+10 −0 include/wabt/binary-reader.h
+8 −0 include/wabt/common.h
+7 −0 include/wabt/expr-visitor.h
+2 −0 include/wabt/interp/interp.h
+28 −1 include/wabt/ir.h
+2 −0 include/wabt/opcode.def
+4 −0 include/wabt/shared-validator.h
+4 −0 include/wabt/token.def
+5 −0 include/wabt/type-checker.h
+1 −0 include/wabt/wast-parser.h
+19 −0 src/apply-names.cc
+32 −0 src/binary-reader-ir.cc
+34 −0 src/binary-reader-logging.cc
+46 −0 src/binary-reader-objdump.cc
+39 −0 src/binary-reader.cc
+23 −0 src/binary-writer.cc
+2 −0 src/c-writer.cc
+23 −0 src/expr-visitor.cc
+6 −0 src/generate-names.cc
+88 −0 src/interp/binary-reader-interp.cc
+15 −0 src/interp/interp.cc
+2 −0 src/interp/istream.cc
+7 −0 src/ir-util.cc
+2 −0 src/ir.cc
+4 −0 src/lexer-keywords.txt
+2 −0 src/opcode.cc
+1,284 −1,311 src/prebuilt/lexer-keywords.cc
+19 −0 src/resolve-names.cc
+40 −0 src/shared-validator.cc
+34 −1 src/type-checker.cc
+24 −0 src/validator.cc
+75 −2 src/wast-parser.cc
+106 −0 src/wat-writer.cc
+21 −0 test/parse/expr/try-table.txt
+1 −1 test/parse/func/bad-local-binding-no-type.txt
+1 −1 test/parse/func/bad-local-binding.txt
+1 −1 test/parse/func/bad-param-binding.txt
+1 −1 test/parse/module/bad-array-no-fields.txt
+35 −0 test/roundtrip/fold-try-table.txt
+13 −3 test/roundtrip/fold-unreachable.txt
+38 −0 test/roundtrip/try-table.txt
+19 −0 test/spec/exception-handling/throw_ref.txt
+41 −0 test/spec/exception-handling/try_table.txt
+1 −1 test/spec/obsolete-keywords.txt
+0 −1 test/update-spec-tests.py

0 comments on commit c6e6592

Please sign in to comment.