wasm-bindgen/tests
Alex Crichton d3387d591f Start optimizing code size:
* Use a bundled custom `WasmRefCell` instead of the one in the standard library.
  This one primarily doesn't panic via libstd which means that its code
  footprint is much smaller.
* Add a `throw` function to `wasm_bindgen`-the-crate which can be used to throw
  an exception in JS from Rust. This is useful as a cheap way to throw an
  exception code-wise (little code bloat) and it's also a great way of reporting
  error messages to JS!
* Cut down on the code size of `__wbindgen_malloc` by aborting on huge requests
  earlier.
* Use a custom `assert_not_null` function which delegates to `throw` to test for
  incoming null pointers
2017-12-19 19:53:55 -08:00
..
classes.rs Start optimizing code size: 2017-12-19 19:53:55 -08:00
imports.rs Generate TypeScript by default instead of JS 2017-12-19 19:06:48 -08:00
jsobjects.rs Generate TypeScript by default instead of JS 2017-12-19 19:06:48 -08:00
simple.rs Generate TypeScript by default instead of JS 2017-12-19 19:06:48 -08:00