@@ -33,7 +33,7 @@ protected override void Initialize()
3333 const PropertyFlag lengthFlags = PropertyFlag . Configurable ;
3434 const PropertyFlag propertyFlags = PropertyFlag . Configurable | PropertyFlag . Writable ;
3535
36- var properties = new PropertyDictionary ( 54 , checkExistingKeys : false )
36+ var properties = new PropertyDictionary ( 55 , checkExistingKeys : false )
3737 {
3838 [ "Object" ] = new PropertyDescriptor ( _realm . Intrinsics . Object , propertyFlags ) ,
3939 [ "Function" ] = new PropertyDescriptor ( _realm . Intrinsics . Function , propertyFlags ) ,
@@ -53,6 +53,7 @@ protected override void Initialize()
5353 [ "BigUint64Array" ] = new LazyPropertyDescriptor ( this , static state => ( ( GlobalObject ) state ) . _realm . Intrinsics . BigUint64Array , propertyFlags ) ,
5454 [ "Float32Array" ] = new LazyPropertyDescriptor ( this , static state => ( ( GlobalObject ) state ) . _realm . Intrinsics . Float32Array , propertyFlags ) ,
5555 [ "Float64Array" ] = new LazyPropertyDescriptor ( this , static state => ( ( GlobalObject ) state ) . _realm . Intrinsics . Float64Array , propertyFlags ) ,
56+ [ "GeneratorFunction" ] = new LazyPropertyDescriptor ( this , static state => ( ( GlobalObject ) state ) . _realm . Intrinsics . GeneratorFunction , propertyFlags ) ,
5657 [ "Map" ] = new LazyPropertyDescriptor ( this , static state => ( ( GlobalObject ) state ) . _realm . Intrinsics . Map , propertyFlags ) ,
5758 [ "Set" ] = new LazyPropertyDescriptor ( this , static state => ( ( GlobalObject ) state ) . _realm . Intrinsics . Set , propertyFlags ) ,
5859 [ "WeakMap" ] = new LazyPropertyDescriptor ( this , static state => ( ( GlobalObject ) state ) . _realm . Intrinsics . WeakMap , propertyFlags ) ,
0 commit comments