mirror of
https://github.com/servo/servo.git
synced 2025-08-06 06:00:15 +01:00
Implement dummy getOwnPropertyNames and enumerate traps.
This commit is contained in:
parent
57c520d8cf
commit
919f2217f0
12 changed files with 55 additions and 15 deletions
|
@ -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,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue