wasm-bindgen/tests/all
Alex Crichton 48a823c685 Remove slice logic of "commit to wasm"
When adding support for mutable slices I was under the impression that if the
wasm memory was reallocated while we were using it then we'd have to commit the
changes from the original buffer back to the new buffer. What I didn't know,
however, is that once the wasm memory is reallocated then all views into it are
supposed to be defunkt.

It looks like node 9 didn't have this implementation quite right and it appears
fixed in node 10, causing the deleted test here to fail. While this commit does
raise the question of whether this is the right approach to interact with slices
in JS I think the answer is still "yes". The user can always initiate the copy
if need be and that seems strictly better than copying 100% of the time.
2018-05-05 14:52:22 -07:00
..
api.rs Move all tests to the same suite 2018-04-09 15:32:06 -07:00
classes.rs Implement readonly struct fields 2018-04-20 10:56:10 -07:00
closures.rs Fix unused variables in generated code 2018-04-19 13:16:59 -07:00
dependencies.rs No need to expose ptr in TypeScript 2018-04-19 13:28:50 -07:00
enums.rs Fix enums defined in submodules 2018-05-02 10:17:16 -07:00
import_class.rs Move all tests to the same suite 2018-04-09 15:32:06 -07:00
imports.rs Don't use the global stack for string lengths 2018-05-02 21:03:50 -07:00
jsobjects.rs Add JsValue::{from_serde, into_serde} 2018-04-26 20:45:22 -07:00
main.rs Enable cargo test where possible 2018-04-27 15:01:35 -07:00
math.rs Move all tests to the same suite 2018-04-09 15:32:06 -07:00
node.rs Move all tests to the same suite 2018-04-09 15:32:06 -07:00
non_debug.rs Move all tests to the same suite 2018-04-09 15:32:06 -07:00
non_wasm.rs Enable cargo test where possible 2018-04-27 15:01:35 -07:00
simple.rs Assert empty JS heap/stack in tests 2018-04-25 22:15:28 -07:00
slice.rs Remove slice logic of "commit to wasm" 2018-05-05 14:52:22 -07:00
structural.rs Move all tests to the same suite 2018-04-09 15:32:06 -07:00