Implement dummy getOwnPropertyNames and enumerate traps.

This commit is contained in:
Ms2ger 2014-12-24 16:55:38 +01:00
parent 57c520d8cf
commit 919f2217f0
12 changed files with 55 additions and 15 deletions

View file

@ -84,15 +84,15 @@ static PROXY_HANDLER: ProxyTraps = ProxyTraps {
getPropertyDescriptor: None,
getOwnPropertyDescriptor: None,
defineProperty: None,
getOwnPropertyNames: 0 as *const u8,
getOwnPropertyNames: None,
delete_: None,
enumerate: 0 as *const u8,
enumerate: None,
has: None,
hasOwn: None,
get: None,
set: None,
keys: 0 as *const u8,
keys: None,
iterate: None,
call: None,