-
-
Notifications
You must be signed in to change notification settings - Fork 1.1k
Comparing changes
Open a pull request
base repository: rustwasm/wasm-bindgen
base: 0.2.78
head repository: rustwasm/wasm-bindgen
compare: 0.2.79
- 17 commits
- 117 files changed
- 14 contributors
Commits on Sep 23, 2021
-
Fix invalid ts definitions for many param fns (#2687)
Currently if one has a function that takes over 26 arguments, the generated typescript definitions contain invalid typescript identifiers for the function parameters. The invalid code will cause the typescript compiler to fail (even if one specifies `skipLibCheck`). To give a contrived example: ```rust pub fn param_silliness( _data0: u8, _data1: u8, _data2: u8, _data3: u8, _data4: u8, _data5: u8, _data6: u8, _data7: u8, _data8: u8, _data9: u8, _data10: u8, _data11: u8, _data12: u8, _data13: u8, _data14: u8, _data15: u8, _data16: u8, _data17: u8, _data18: u8, _data19: u8, _data20: u8, _data21: u8, _data22: u8, _data23: u8, _data24: u8, _data25: u8, _data26: u8, _data27: u8, ) -> usize { 0 } ``` Generates a `_bg.wasm.d.ts` that uses `{` as an parameter name which is invalid. A non-contrived example is bundling the brotli crate: ```rust pub fn brotli_compress(data: &[u8]) -> Vec<u8> { let out = Vec::with_capacity(data.len() / 10); let mut reader = Cursor::new(data); let cursor = Cursor::new(out); let mut compressor = brotli::CompressorWriter::new(cursor, 4096, 9, 22); std::io::copy(&mut reader, &mut compressor).unwrap(); compressor.into_inner().into_inner() } ``` Which generates a function (`BroccoliDestroyInstance`) with a cool 121 parameters and a lot of invalid identifiers. The commit fixes this issue by appending additional English letters to the parameter names when a function exceeds 26 arguments. Functions with less than 26 arguments will see no difference in output. Functions greater than 26 arguments will see an output like: ```ts export function param_silliness( // ... z: number, a1: number, b1: number ): number ```
Configuration menu - View commit details
-
Copy full SHA for dc9141e - Browse repository at this point
Copy the full SHA dc9141eView commit details
Commits on Oct 12, 2021
-
Fix recursive implementation of
From<Number> for f64
(#2695)The current code, I assume, attempted to hand over such implementation to that of `From<&Number> for f64`, but not only did it use the ambiguous `.` dot method syntax, it also forgot to take a reference to `n`, resulting `<Number as Into<f64>>::into` being called, whose implementation comes from the blanket `From -> Into` impl, effectively resulting in a recursive definition.
Configuration menu - View commit details
-
Copy full SHA for d4b21e7 - Browse repository at this point
Copy the full SHA d4b21e7View commit details
Commits on Oct 20, 2021
-
Add bindings for
ResizeObserver
(#2701)* Add bindings for `ResizeObserver` I had to add a `Constructor` attribute to `ResizeObserver`, since the new constructor syntax isn't supported yet (#1952). * Mark API as unstable * reset ci
Configuration menu - View commit details
-
Copy full SHA for e447729 - Browse repository at this point
Copy the full SHA e447729View commit details
Commits on Nov 10, 2021
-
Configuration menu - View commit details
-
Copy full SHA for 128aed9 - Browse repository at this point
Copy the full SHA 128aed9View commit details -
Use GitHub Actions for CI (#2720)
* Use GitHub Actions for CI This commit migrates away from Azure Pipelines to GitHub Actions. I've attempted to make sure everything is still tested and the various auto-release mechanisms still work as well. Time will tell for sure though! * Tweak branch listings
Configuration menu - View commit details
-
Copy full SHA for a086f94 - Browse repository at this point
Copy the full SHA a086f94View commit details
Commits on Nov 18, 2021
-
Adjust attributes for linters in generated code (#2719)
* Adjust attributes for linters in generated code * Strip direct Clippy lints suppression from generated code * Adjust * Try adjust, vol.2 * Try adjust, vol.3
Configuration menu - View commit details
-
Copy full SHA for e89175c - Browse repository at this point
Copy the full SHA e89175cView commit details
Commits on Dec 13, 2021
-
Identify missing environment variables (#2733)
Matches the strategy used in `crates/backend/src/util.rs:145`.
Configuration menu - View commit details
-
Copy full SHA for 9fdf8f0 - Browse repository at this point
Copy the full SHA 9fdf8f0View commit details -
Fix
fn () -> Result<T, JsValue>
leaking stack space (#2710)* add Descriptor RESULT and Instruction::UnwrapResult * ResultAbi / ResultAbiUnion basic wasmresult support one WasmResult ctor per WasmAbi Remove WasmResult class * Reverse the fields on ResultAbi, remove is_ok as err can be 0 impl OptionIntoWasmAbi for JsValue * implement ResultAbi * Add tests for `-> Result<T, JsError>` * split result.rs tests in two remove console_log * initial implementation of `-> Result<T, JsError>` describe Result<_, JsError> implement Intrinsics::ErrorNew Revert impl From<()> for JsValue (src/lib.rs) impl WasmDescribe etc for JsError remove unused JsError * docs on JsError, move to lib.rs * Add test for returning Result<(), _> * Add failing test for returning `Result<Option<f64>, _>` This fails because the generated LoadRetptr instructions do not have any conception of how big the previous args are. It only fails when any part of T is an f64. * Make LoadRetptr offsets factor in alignment and previously read values * Add a doc comment to UnwrapResult * Slight correction to a comment * Better error message * un-implement OptionIntoWasmAbi for JsValue, use discriminant instead * Add some documentation from the PR discussion to ResultAbi * un-implement OptionIntoWasmAbi for &'a JsValue too * bless some UI tests, not sure why * bless the CLI's output tests * fix indentation of if (is_ok === 0) { throw ... } code * add tests for async fn() -> Result<_, JsError> and custom error types * cargo fmt * fix bug where takeObject was missing * support externref in UnwrapResult * add a WASM_BINDGEN_EXTERNREF=1 test to ci * getFromExternrefTable -> takeFromExternrefTable Now we do not leak externrefs, as the take function calls drop on them. * rewrite outgoing_result There was a crash where _outgoing inserted more than one instruction, e.g. for string. In that case, the deferred free() call was using the wrong popped values, and tried to free nonsense formed by the is_ok/err pair. Now it does a similar idea, but without assuming exactly one instruction will be pushed by self._outgoing(). * rename is_ok -> is_err, which makes generated glue easier to read * update ui tests * add a crashing (if you uncomment the throw) test of Result<String, _> * add result-string reference test * Fix the crashy Result<String, _> by setting ptr/len to 0 on error
Configuration menu - View commit details
-
Copy full SHA for ac87c82 - Browse repository at this point
Copy the full SHA ac87c82View commit details
Commits on Dec 26, 2021
-
Documentation link updated. (#2749)
Previously the link in the docs went to a github pull request which then linked to https://github.com/rustwasm/rfcs/blob/master/text/000-wasm-bindgen-inheritance-casting.md when the working link was https://github.com/rustwasm/rfcs/blob/master/text/002-wasm-bindgen-inheritance-casting.md
Configuration menu - View commit details
-
Copy full SHA for c515cbf - Browse repository at this point
Copy the full SHA c515cbfView commit details
Commits on Jan 4, 2022
-
Fix macro hygiene in wasm_bindgen_test (#2748)
Specifically, use fully qualified path for `concat!` macro.
Configuration menu - View commit details
-
Copy full SHA for 8aa58ac - Browse repository at this point
Copy the full SHA 8aa58acView commit details
Commits on Jan 10, 2022
-
Configuration menu - View commit details
-
Copy full SHA for f158a75 - Browse repository at this point
Copy the full SHA f158a75View commit details -
Configuration menu - View commit details
-
Copy full SHA for d68ceed - Browse repository at this point
Copy the full SHA d68ceedView commit details -
Configuration menu - View commit details
-
Copy full SHA for 39423ed - Browse repository at this point
Copy the full SHA 39423edView commit details
Commits on Jan 13, 2022
-
Configuration menu - View commit details
-
Copy full SHA for c25c1f4 - Browse repository at this point
Copy the full SHA c25c1f4View commit details
Commits on Jan 18, 2022
-
Implement OptionIntoWasmAbi for Closure references (#2768)
* Implement OptionIntoWasmAbi for Closure references * Add tests for optional closure arguments * Uncomment None test for optional closure argument * Tighten None test for optional closure argument * Add tests for dropping optional closures Co-authored-by: Billy Bradley <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for 3701c9d - Browse repository at this point
Copy the full SHA 3701c9dView commit details
Commits on Jan 19, 2022
-
Configuration menu - View commit details
-
Copy full SHA for 3e507e6 - Browse repository at this point
Copy the full SHA 3e507e6View commit details -
* Version bump * 0.2.79 Version Bump * 2022-01-19 Change Log
Configuration menu - View commit details
-
Copy full SHA for 9b0d40c - Browse repository at this point
Copy the full SHA 9b0d40cView commit details
This comparison is taking too long to generate.
Unfortunately it looks like we can’t render this comparison for you right now. It might be too big, or there might be something weird with your repository.
You can try running this command locally to see the comparison on your machine:
git diff 0.2.78...0.2.79