Add RPC handling for the type and optional properties
This commit is contained in:
parent
c7e44cd01f
commit
d1248b6676
|
@ -117,6 +117,12 @@ export function createCollection(prototype, realmId, info, _mutable) {
|
||||||
'length': {
|
'length': {
|
||||||
get: getterForProperty('length'),
|
get: getterForProperty('length'),
|
||||||
},
|
},
|
||||||
|
'type': {
|
||||||
|
get: getterForProperty('type'),
|
||||||
|
},
|
||||||
|
'optional': {
|
||||||
|
get: getterForProperty('optional'),
|
||||||
|
},
|
||||||
'-1': {
|
'-1': {
|
||||||
value: undefined,
|
value: undefined,
|
||||||
},
|
},
|
||||||
|
|
Loading…
Reference in New Issue