Pauan
a93b778b5c
Fixing bug with Firefox extension content scripts ( #2099 )
2020-04-22 09:12:14 -05:00
Pauan
5a752e5b84
Adding in typescript_type to the js_sys types ( #2028 )
2020-03-03 22:52:40 -06:00
Ingvar Stepanyan
1e75e415b3
Fix TypedArray::subarray
docs ( #2021 )
...
Looks like these were mistakenly copy-pasted from the `TypedArray::set` method.
2020-03-02 08:57:02 -06:00
Richard Dodd (dodj)
7db01a7c7c
Add get/set for TypedArray
s. ( #2001 )
...
* Add get/set for `TypedArray`s.
* Change names.
* Change name to @pauan suggestion.
2020-02-18 13:01:13 -06:00
Richard Dodd (dodj)
bb066e68a5
Add javascript Number consts. ( #1965 )
...
* Add javascript Number consts.
* Add tests
2020-01-21 10:14:50 -06:00
Darin Morrison
624ff42eae
Mark js_sys::Promise as #[must_use] ( #1927 )
...
* Mark js_sys::Promise as #[must_use]
* Fix js_sys::Promise #[must_use] warnings
2020-01-06 09:47:16 -06:00
Pauan
221514acb9
Adding in Array::iter and Array::to_vec ( #1909 )
...
* Adding in Array::iter and Array::to_vec
* Changing ArrayIter to use std::ops::Range
2019-12-17 11:40:33 -06:00
haveyaseen
cbfefb312c
Consistent inline code formatting in js-sys docs ( #1915 )
...
* Consistent inline code formatting in docs
Also corrects the docstring of `Math.cbrt()` (the cubic root of x is not x^3).
* Add backticks to Array#includes()
* Fix links to functions in Reflect docs
As soon as intra-rustdoc links land in stable the round brackets can be removed.
2019-12-17 09:22:33 -06:00
Pauan
a1d90398d0
Adding in support for async iterators ( #1895 )
...
* Adding in support for async iterators
* Adding in some unit tests for asyncIterator
* Fixing unit tests
* Fixing UI tests
2019-12-04 17:51:22 -06:00
Ilya Baryshnikov
ada615f3dd
simplify macro for arrays ( #1856 )
2019-11-08 16:12:22 -06:00
lshlyapnikov
d51f539d1a
Add an unsafe method view_mut_raw ( #1850 )
...
* adding .vscode folder to .gitignore
* Adding view_mut_raw to generated arrays
* test populating rust vector from JS function
* Uint32Array test, need to make it generic
* Add doc + more test cases
* replacing macro-generated tests with generic test function
it is cleaner, safer and better that way
* improving rustdoc
2019-11-06 12:37:26 -06:00
Pauan
1f51831c3d
Adding in to_vec method for typed arrays ( #1844 )
...
* Adding in to_vec method for typed arrays
* Fixing type error
2019-10-29 18:10:18 -05:00
C Burgos
f0a55f8930
Feat/date opt params ( #1759 )
...
* add date methods/ constructors with opt params
* Run fmt
2019-09-09 09:57:51 -05:00
Pauan
ba85275d7d
Adding in more methods for Array ( #1749 )
2019-09-04 11:46:33 -05:00
ibaryshnikov
16c6bdc966
moved threadsafe futures implementation to a separate file, made updates after review
2019-07-17 00:48:00 +03:00
ibaryshnikov
c01575c1bc
typo fixed in Atomics docs
2019-07-17 00:48:00 +03:00
ibaryshnikov
d1d3021271
added polyfill for Atomics.wait and used it to notify futures
2019-07-17 00:48:00 +03:00
Nick Fitzgerald
d02e115fd4
Merge pull request #1650 from alexcrichton/less-csp
...
Use static accessors if possible to get global object
2019-07-10 09:37:56 -07:00
Alex Crichton
0b08bba0c7
Use static accessors if possible to get global object
...
Previously we always used `Function('return this')` but this triggers
CSP errors since it's basically `eval`. Instead this adds a few
preflight checks to look for objects like `globalThis`, `self`, etc.
Currently we don't have a `#[wasm_bindgen]` function annotation to
import a bare global field like `self`, but we test accesses with
`self.self` and `globalThis.globalThis`, catching errors to handle any
issues.
Closes #1641
2019-07-08 13:28:06 -07:00
Richard Dodd
2541507789
Add in (unsafe and incorrect) impls of Send/Sync that are now required.
2019-07-06 16:30:29 +01:00
Samuel Warfield
06d0704cf8
Added tests for bind1()
2019-06-28 12:03:45 -06:00
Samuel Warfield
caa86a07a0
Attempted to tackle #1622
2019-06-27 15:48:18 -06:00
Pauan
497c5ed423
Removing TODOs
2019-06-25 21:42:20 +02:00
Pauan
b9fd30b49e
Adding in TODO note
2019-06-25 21:42:20 +02:00
Pauan
86937b9dba
Adding in From impl for TypedArrays
2019-06-25 21:42:20 +02:00
Teddy Katz
5c5c13cf9e
Add Array#flat and Array#flatMap to js-sys ( fixes #1454 )
2019-06-03 18:32:58 -04: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
60bb68649b
Merge pull request #1490 from RReverser/deprecate-custom-try-from
...
Recommend to use dyn_ref on funcs and strings
2019-04-29 09:08:00 -05:00
Alex Crichton
36c0a1347d
Merge pull request #1492 from RReverser/function-new-with-args
...
Add bindings for `new Function(args, body)`
2019-04-26 12:05:46 -05:00
Ingvar Stepanyan
814f576b1d
Add bindings for new Function(args, body)
...
We don't support variadic args in front, but, luckily for us, `new Function` accepts comma-separated args as a single string as well (see updated JSON test for an example).
2019-04-26 17:42:23 +01:00
Ingvar Stepanyan
85eea18658
Adds missing variadic bindings for string methods
...
- `JsString::from_code_point` - allows to create JS strings using slice of codes in WASM memory.
- `JsString::from_char_code` - same as above, but also uses updated signature with `u16` instead of `u32` (partially helps with #1460 at least for the new binding).
2019-04-26 16:57:34 +01:00
Ingvar Stepanyan
ccc99cd047
Recommend to use dyn_ref on funcs and strings
...
Now that functions and strings work properly with custom typechecks, these custom methods seem obsolete, so I'd recommend to use standard dyn_ref instead.
2019-04-26 15:50:08 +01:00
Kevin Gibbons
a32d2553fc
js-sys: add Object.fromEntries
2019-04-25 20:52:29 -07:00
Alex Crichton
7e512ba187
Merge pull request #1463 from ibaryshnikov/atomics-support
...
added Atomics and SharedArrayBuffer
2019-04-25 21:48:55 -05:00
ibaryshnikov
b05ae44a8c
changed f64 to i32 in static methods of Atomics, changed static_method_of to js_namespace, set typed_array type to Int32Array in notify and wait methods
2019-04-26 01:56:58 +08:00
ibaryshnikov
58245b0587
changed String to JsString in Atomics::wait
2019-04-26 00:02:19 +08:00
ibaryshnikov
de2c2cf26c
fixed Atomics::wait and Atomics::wait_with_timeout return type
2019-04-25 19:18:31 +08:00
Ingvar Stepanyan
680a6bbb0c
Remove PartialEq<char> for JsString for now
...
This seems to spark controversy, so removing for now but should be easy enough to still add in the future.
2019-04-24 13:40:18 +01:00
ibaryshnikov
0759bfa7e2
f32 changed to f64 in Atomics
2019-04-24 00:27:15 +08:00
ibaryshnikov
f1eaefdf0d
fixed value types in Atomics methods
2019-04-24 00:25:25 +08:00
ibaryshnikov
1071457c3d
added SharedArrayBuffer and Atomics to js-sys
2019-04-24 00:01:15 +08:00
Ingvar Stepanyan
bc4a98d146
Add JsString <-> char conversions
...
These are pretty common and already supported via ABI conversions, yet pretty easy to get wrong when converting them manually.
Fixes #1363 .
2019-04-23 15:54:06 +01:00
Alex Crichton
ff1addbbaa
Run cargo fmt
2019-04-16 10:52:27 -07:00
Alex Crichton
526b253b47
Merge pull request #1451 from RReverser/more-static-namespaces
...
Transform Math, Reflect and JSON into static namespaces
2019-04-15 09:41:40 -05:00
Ingvar Stepanyan
ed45ca72da
Fix more DataView documentation mistakes
...
I fixed few copy-paste mistakes in https://github.com/rustwasm/wasm-bindgen/pull/1372 , but haven't noticed that they go even deeper :(
2019-04-15 14:31:23 +01:00
Ingvar Stepanyan
62b7d3e3c4
Transform JSON into a namespace
2019-04-13 02:22:19 +01:00
Ingvar Stepanyan
75c2971ab9
Transform Reflect into a namespace
2019-04-13 02:21:33 +01:00
Ingvar Stepanyan
fe939bc911
Transform Math into a namespace
2019-04-13 02:20:24 +01:00
Ingvar Stepanyan
2f524ee494
Leverage new is_type_of
for iterator protocol
...
Treats any object of shape `{ next: function }` as an iterator via new `is_type_of` method. This is consistent with JavaScript iteration protocol which we already respect.
Also fixes a minor issue that `is_function` was unnecessarily called twice (once explicitly and once as part of `dyn_into` which now does the same check).
2019-04-12 20:30:41 +01:00
Ingvar Stepanyan
cb880bdbff
Add customisable is_type_of
2019-04-12 17:23:42 +01:00