Commit Graph

2667 Commits

Author SHA1 Message Date
Alex Crichton
117928f0c0 Add doc comments to web-sys dictionaries/fields
This commit ensures that web-sys generated dictionaries and fields all
have comments like interfaces do, indicating a bare minimum of what's
happening as well as the required features to enable the API.
2019-06-03 13:18:38 -07:00
Alex Crichton
877c31cdc8 web-sys: Don't remove dictionaries if required fields are removed
This commit updates the conditional binding generation for dictionaries
to ensure that a dictionary is not entirely removed if any of its
required fields are removed. If a required field is removed, however, it
cannot be constructed, so the constructor is removed.
2019-06-03 12:57:21 -07:00
Alex Crichton
618b5d3531
Merge pull request #1571 from alexcrichton/less-warnings
Use `dyn` with all trait objects
2019-06-03 11:54:29 -05:00
Alex Crichton
82467f9793 Use dyn with all trait objects
Fixes new warnings showing up on nightly nowadays.
2019-06-03 08:28:55 -07:00
Alex Crichton
f3adee7056 Squash warnings about unused variables
Make sure when compiling for non-wasm targets we don't issue tons of
warnings about unused variables which can't be squashed.
2019-06-03 08:25:07 -07:00
Alex Crichton
c876bd6268
Merge pull request #1570 from DiamondLovesYou/master
Support 8 argument closures.
2019-06-03 09:36:41 -05:00
Alex Crichton
9884c79bd9
Merge pull request #1546 from ibaryshnikov/websockets-example
added websockets example
2019-06-03 09:33:39 -05:00
ibaryshnikov
cbedf0bba0 added websockets example to the guide 2019-06-01 16:17:50 +03:00
ibaryshnikov
e16bb9cd38 exclude websockets from being built using npm 2019-06-01 15:40:32 +03:00
ibaryshnikov
6825da384f added websockets example 2019-06-01 15:40:32 +03:00
Richard Diamond
03218d9d3c Support 8 argument closures. 2019-06-01 04:19:26 -05:00
Alex Crichton
ad68436cc9 Looks like webassembly-js-api package no longer needed!
Closes #1565
2019-05-30 07:40:26 -07:00
Alex Crichton
2d13589c56
Merge pull request #1561 from xtuc/chore-upgrade-wasm-pack-plugin
update wasm-pack-plugin to 0.4.1
2019-05-30 09:01:43 -05:00
Sven Sauleau
546f65e2f3 chore: bump again 2019-05-29 17:37:37 +01:00
Sven Sauleau
e65791d5c1 fix: remove css modification 2019-05-29 17:10:43 +01:00
Sven Sauleau
f63238ee24 chore: update wasm-pack-plugin to 0.4.1 2019-05-29 17:09:26 +01:00
Alex Crichton
cd724cb274
Merge pull request #1560 from devsnek/clean/linting
Run fmt and clippy
2019-05-28 12:15:07 -05:00
Gus Caplan
2cc40a27d2
Run fmt and clippy 2019-05-28 09:52:44 -05:00
Alex Crichton
dfcaabc738
Merge pull request #1557 from devsnek/new-weakref
Rewrite weakrefs to use current proposal
2019-05-28 09:12:47 -05:00
Alex Crichton
2a665a92fd Fix compile errors on nightly 2019-05-28 07:05:52 -07:00
Alex Crichton
39b5f1845d Fix a warning 2019-05-28 07:03:42 -07:00
Alex Crichton
2d22fa4f03
Merge pull request #1556 from noelyoo/fix-docs-link
docs: update docs link
2019-05-28 08:25:07 -05:00
Gus Caplan
66ade77720
Rewrite weakrefs to use current proposal 2019-05-26 09:30:33 -05:00
noelyoo
f3ec734310 docs: update docs link 2019-05-26 16:43:00 +09:00
Nick Fitzgerald
62b313d695 Fix README's badges 2019-05-23 14:27:16 -07:00
Nick Fitzgerald
c7b41d03a6 Add standard WG header to README 2019-05-23 14:24:29 -07:00
Nick Fitzgerald
6f8de177e3
Merge pull request #1553 from fitzgen/guide-serde-wasm-bindgen
Add note to the guide about `serde-wasm-bindgen`
2019-05-23 14:15:03 -07:00
Nick Fitzgerald
2a896dbeb3 Also mention that serde-wasm-bindgen supports more types than JSON does 2019-05-23 14:14:21 -07:00
Nick Fitzgerald
90f1866ddd Add note to the guide about serde-wasm-bindgen 2019-05-22 09:39:08 -07:00
Nick Fitzgerald
5233139b31
Update README.md sample code to 2018 edition 2019-05-21 19:22:34 -07:00
Alex Crichton
9b04fe9e45
Merge pull request #1545 from infinity0/master
Work around rust-lang/rust#58516
2019-05-21 08:58:59 -05:00
Ximin Luo
81fb2d97d3 Work around rust-lang/rust#58516 2019-05-20 20:18:24 -07:00
Alex Crichton
bc5f73e3d2
Merge pull request #1550 from alexcrichton/more-better-errors
Improve diagnostics with missing trait implementations
2019-05-20 13:04:46 -05:00
Alex Crichton
b96186e9a6
Merge pull request #1549 from alexcrichton/bump
Bump to 0.2.45
2019-05-20 12:50:42 -05:00
Alex Crichton
2cbb8b8a69 Improve diagnostics with missing trait implementations
Rejigger a few spans, work around an odd rustc issue, and hopefully
produce higher quality error messages!

Closes #1528
2019-05-20 10:49:36 -07:00
Alex Crichton
a02d210d5c Catch more errors on non-wasm32 platforms
This commit tweaks the codegen for imported functions and such (anything
that relies on some imported intrinsic or function filled in by the CLI)
to share as much code as possible on non-wasm32 platforms. This should
help us catch more errors before compiling to wasm and also just make it
easier to write UI tests!

For example a UI test previously couldn't be written for #1528 but now
it can be, and one is include (although the error message is quite bad).
2019-05-20 10:16:25 -07:00
Alex Crichton
137bbdf2e3 Bump to 0.2.45 2019-05-20 09:44:03 -07:00
Alex Crichton
f23b867179
Merge pull request #1544 from ibaryshnikov/master
expose forget to wasm
2019-05-20 11:33:10 -05:00
Alex Crichton
a68cdc594d Add a test that Callback::forget works 2019-05-20 09:32:37 -07:00
Alex Crichton
4049803c39
Merge pull request #1548 from lzubiaur/fix-heap-closure-example
Fix closure example compilation errors
2019-05-20 09:23:06 -05:00
lzubiaur
c043a952a2 Fix closure example compilation errors 2019-05-20 16:40:22 +09:00
ibaryshnikov
805738608d expose forget to wasm 2019-05-19 14:42:53 +03:00
Nick Fitzgerald
0cbdea5fa9
Merge pull request #1542 from fitzgen/update-walrus
Update dependencies and use new walrus custom sections APIs
2019-05-17 15:21:35 -07:00
Nick Fitzgerald
d422436487 Update dependencies and use new walrus custom sections APIs 2019-05-17 14:58:50 -07:00
Alex Crichton
fb42e47ba7
Merge pull request #1541 from RReverser/rm-wasm-bindgen-test-unsafe
Remove unsafe from #[wasm_bindgen_test] output
2019-05-17 10:42:35 -05:00
Ingvar Stepanyan
cce12bfe16 Remove unsafe from #[wasm_bindgen_test] output
This is not necessary because references are FFI-safe and compatible with corresponding pointers, so we can just use them directly as an input.

Fixes #1540.
2019-05-17 15:52:26 +01:00
Alex Crichton
3e6d89f1cf
Merge pull request #1539 from dakom/master
whitelist uniforms with Int32List
2019-05-17 08:46:14 -05:00
dakom
ae2aba094c whitelist uniforms with Int32List 2019-05-17 09:59:28 +03:00
Nick Fitzgerald
0d895dde14
Fix version title in the CHANGELOG.md 2019-05-16 13:31:18 -07:00
Alex Crichton
40ec810b86
Merge pull request #1537 from lqd/weedle-0.9
Update weedle to version 0.9
2019-05-16 12:14:36 -05:00