Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: rustwasm/wasm-bindgen
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 0.2.78
Choose a base ref
...
head repository: rustwasm/wasm-bindgen
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 0.2.79
Choose a head ref
  • 17 commits
  • 117 files changed
  • 14 contributors

Commits on Sep 23, 2021

  1. 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
    ```
    nickbabcock authored Sep 23, 2021
    Configuration menu
    Copy the full SHA
    dc9141e View commit details
    Browse the repository at this point in the history

Commits on Oct 12, 2021

  1. 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.
    danielhenrymantilla authored Oct 12, 2021
    Configuration menu
    Copy the full SHA
    d4b21e7 View commit details
    Browse the repository at this point in the history

Commits on Oct 20, 2021

  1. 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
    Liamolucko authored Oct 20, 2021
    Configuration menu
    Copy the full SHA
    e447729 View commit details
    Browse the repository at this point in the history

Commits on Nov 10, 2021

  1. Configuration menu
    Copy the full SHA
    128aed9 View commit details
    Browse the repository at this point in the history
  2. 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
    alexcrichton authored Nov 10, 2021
    Configuration menu
    Copy the full SHA
    a086f94 View commit details
    Browse the repository at this point in the history

Commits on Nov 18, 2021

  1. 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
    tyranron authored Nov 18, 2021
    Configuration menu
    Copy the full SHA
    e89175c View commit details
    Browse the repository at this point in the history

Commits on Dec 13, 2021

  1. Identify missing environment variables (#2733)

    Matches the strategy used in `crates/backend/src/util.rs:145`.
    tamird authored Dec 13, 2021
    Configuration menu
    Copy the full SHA
    9fdf8f0 View commit details
    Browse the repository at this point in the history
  2. 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
    cormacrelf authored Dec 13, 2021
    Configuration menu
    Copy the full SHA
    ac87c82 View commit details
    Browse the repository at this point in the history

Commits on Dec 26, 2021

  1. Configuration menu
    Copy the full SHA
    c515cbf View commit details
    Browse the repository at this point in the history

Commits on Jan 4, 2022

  1. Fix macro hygiene in wasm_bindgen_test (#2748)

    Specifically, use fully qualified path for `concat!` macro.
    teohhanhui authored Jan 4, 2022
    Configuration menu
    Copy the full SHA
    8aa58ac View commit details
    Browse the repository at this point in the history

Commits on Jan 10, 2022

  1. Update test expectations

    alexcrichton committed Jan 10, 2022
    Configuration menu
    Copy the full SHA
    f158a75 View commit details
    Browse the repository at this point in the history
  2. spellcheck (#2762)

    sjud authored Jan 10, 2022
    Configuration menu
    Copy the full SHA
    d68ceed View commit details
    Browse the repository at this point in the history
  3. Fix some more tests

    alexcrichton committed Jan 10, 2022
    Configuration menu
    Copy the full SHA
    39423ed View commit details
    Browse the repository at this point in the history

Commits on Jan 13, 2022

  1. Typo (#2765)

    changed bodt to body
    muse254 authored Jan 13, 2022
    Configuration menu
    Copy the full SHA
    c25c1f4 View commit details
    Browse the repository at this point in the history

Commits on Jan 18, 2022

  1. 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]>
    sinking-point and sinking-point authored Jan 18, 2022
    Configuration menu
    Copy the full SHA
    3701c9d View commit details
    Browse the repository at this point in the history

Commits on Jan 19, 2022

  1. Configuration menu
    Copy the full SHA
    3e507e6 View commit details
    Browse the repository at this point in the history
  2. Version bump (#2772)

    * Version bump
    
    * 0.2.79 Version Bump
    
    * 2022-01-19 Change Log
    REllEK-IO authored Jan 19, 2022
    Configuration menu
    Copy the full SHA
    9b0d40c View commit details
    Browse the repository at this point in the history
Loading