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

            return instance;
        }
Exemplo n.º 2
0
        public BooleanInstance Construct(bool value)
        {
            var instance = new BooleanInstance(Engine);

            instance.Prototype      = PrototypeObject;
            instance.PrimitiveValue = value;
            instance.Extensible     = true;

            return(instance);
        }