Merge pull request #288 from belfz/expose-bindings/object-has-own-property-allow-jsvalue

allows using &JsValue as an arg to Object's has_own_property
This commit is contained in:
Nick Fitzgerald 2018-06-21 15:21:54 -07:00 committed by GitHub
commit 22feded106
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 9 additions and 5 deletions

View File

@ -84,7 +84,7 @@ extern {
///
/// https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Object/hasOwnProperty
#[wasm_bindgen(method, js_name = hasOwnProperty)]
pub fn has_own_property(this: &Object, property: &str) -> bool;
pub fn has_own_property(this: &Object, property: &JsValue) -> bool;
/// The toString() method returns a string representing the object.
///

View File

@ -39,8 +39,8 @@ fn has_own_property() {
use wasm_bindgen::js;
#[wasm_bindgen]
pub fn has_own_foo_property(obj: &js::Object) -> bool {
obj.has_own_property("foo")
pub fn has_own_foo_property(obj: &js::Object, property: &JsValue) -> bool {
obj.has_own_property(&property)
}
"#)
.file("test.ts", r#"
@ -48,8 +48,12 @@ fn has_own_property() {
import * as wasm from "./out";
export function test() {
assert.ok(wasm.has_own_foo_property({ foo: 42 }));
assert.ok(!wasm.has_own_foo_property({}));
assert(wasm.has_own_foo_property({ foo: 42 }, "foo"));
assert(wasm.has_own_foo_property({ 42: "foo" }, 42));
assert(!wasm.has_own_foo_property({ foo: 42 }, "bar"));
const s = Symbol();
assert(wasm.has_own_foo_property({ [s]: "foo" }, s));
}
"#)
.test()