Skip to content
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

Expose objects and functions from the JavaScript global scope #274

Merged
merged 6 commits into from
Jun 19, 2018

Commits on Jun 18, 2018

  1. Configuration menu
    Copy the full SHA
    e4dcb8f View commit details
    Browse the repository at this point in the history
  2. cli-support: Ignore missing descriptor functions

    This can happen when a nested dependency crate exports things but the root crate
    doesn't use them. In these cases, it is fine to ignore the missing descriptor,
    because the thing it describes was removed as dead code.
    fitzgen committed Jun 18, 2018
    Configuration menu
    Copy the full SHA
    132103e View commit details
    Browse the repository at this point in the history
  3. Expose objects and functions from the JavaScript global scope

    These are bindings to JavaScript's standard, built-in objects and their methods
    and properties.
    
    This does *not* include any Web, Node, or any other JS environment APIs. Only
    the things that are guaranteed to exist in the global scope by the ECMAScript
    standard.
    
    https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects
    fitzgen committed Jun 18, 2018
    Configuration menu
    Copy the full SHA
    161fce9 View commit details
    Browse the repository at this point in the history
  4. Don't document descriptor functions

    They aren't part of any public API, and are just an implementation detail of
    wasm-bindgen.
    fitzgen committed Jun 18, 2018
    Configuration menu
    Copy the full SHA
    d9cac3b View commit details
    Browse the repository at this point in the history

Commits on Jun 19, 2018

  1. Configuration menu
    Copy the full SHA
    a201caf View commit details
    Browse the repository at this point in the history
  2. test: remove unnecessary test.ts files

    The testing infrastructure will add exactly this default `test.ts` when it isn't
    explicitly specified.
    fitzgen committed Jun 19, 2018
    Configuration menu
    Copy the full SHA
    7b0e779 View commit details
    Browse the repository at this point in the history