File tree 12 files changed +3
-118
lines changed
crates/example-tests/tests
12 files changed +3
-118
lines changed Original file line number Diff line number Diff line change @@ -314,10 +314,6 @@ jobs:
314
314
- run : rustup update --no-self-update stable && rustup default stable
315
315
- run : rustup target add wasm32-unknown-unknown
316
316
- run : curl https://rustwasm.github.io/wasm-pack/installer/init.sh -sSf | sh -s -- -f
317
- - run : |
318
- curl -L https://github.com./WebAssembly/binaryen/releases/download/version_112/binaryen-version_112-x86_64-linux.tar.gz -sSf > binaryen-version_112-x86_64-linux.tar.gz
319
- tar -xz -f binaryen-version_112-x86_64-linux.tar.gz binaryen-version_112/bin/wasm2js
320
- echo "$PWD/binaryen-version_112/bin" >> $GITHUB_PATH
321
317
- run : |
322
318
cargo build -p wasm-bindgen-cli
323
319
ln -snf `pwd`/target/debug/wasm-bindgen $(dirname `which cargo`)/wasm-bindgen
Original file line number Diff line number Diff line change @@ -96,7 +96,6 @@ members = [
96
96
" examples/wasm-in-wasm" ,
97
97
" examples/wasm-in-wasm-imports" ,
98
98
" examples/wasm-in-web-worker" ,
99
- " examples/wasm2js" ,
100
99
" examples/weather_report" ,
101
100
" examples/webaudio" ,
102
101
" examples/webgl" ,
Original file line number Diff line number Diff line change @@ -39,8 +39,6 @@ shell_tests! {
39
39
raytrace_parallel = "raytrace-parallel" ,
40
40
#[ cfg( feature = "stable" ) ]
41
41
synchronous_instantiation = "synchronous-instantiation" ,
42
- #[ cfg( feature = "stable" ) ]
43
- wasm2js = "wasm2js" ,
44
42
#[ cfg( feature = "nightly" ) ]
45
43
#[ "RUSTUP_TOOLCHAIN" = "nightly" ]
46
44
wasm_audio_worklet = "wasm-audio-worklet" ,
Load Diff This file was deleted.
Load Diff This file was deleted.
Load Diff This file was deleted.
Load Diff This file was deleted.
Load Diff This file was deleted.
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 10
10
- [ Small Wasm files] ( ./examples/add.md )
11
11
- [ Without a Bundler] ( ./examples/without-a-bundler.md )
12
12
- [ Synchronous Instantiation] ( ./examples/synchronous-instantiation.md )
13
- - [ Converting WebAssembly to JS] ( ./examples/wasm2js.md )
14
13
- [ Importing functions from JS] ( ./examples/import-js.md )
15
14
- [ Working with ` char ` ] ( ./examples/char.md )
16
15
- [ js-sys: WebAssembly in WebAssembly] ( ./examples/wasm-in-wasm.md )
Load Diff This file was deleted.
Original file line number Diff line number Diff line change @@ -15,10 +15,9 @@ also like to be aware of it!
15
15
16
16
* ** IE 11** - ` wasm-bindgen ` by default requires support for
17
17
` WebAssembly ` , but no version of IE currently supports ` WebAssembly ` . You can
18
- support IE by [ compiling Wasm files to JS using ` wasm2js ` ] [ w2js ] (you can [ see
19
- an example of doing this too] ( ../examples/wasm2js.html ) ). Note
20
- that at this time no bundler will do this by default, but we'd love to
21
- document plugins which do this if you are aware of one!
18
+ support IE by [ compiling Wasm files to JS using ` wasm2js ` ] [ w2js ] . Note that
19
+ at this time no bundler will do this by default, but we'd love to document
20
+ plugins which do this if you are aware of one!
22
21
23
22
If you find other incompatibilities please report them to us! We'd love to
24
23
either keep this list up-to-date or fix the underlying bugs :)
You can’t perform that action at this time.
0 commit comments