public BooleanInstance Construct(bool value) { var instance = new BooleanInstance(Engine); instance.Prototype = PrototypeObject; instance.PrimitiveValue = value; instance.Extensible = true; return instance; }
public BooleanInstance Construct(bool value) { var instance = new BooleanInstance(Engine); instance.Prototype = PrototypeObject; instance.PrimitiveValue = value; instance.Extensible = true; return(instance); }