Exemplo n.º 1
0
     * @return Func
     */
    static function getGlobalConstructor()
    {
        $Boolean = new Func(function ($value = false) {
            $self = Func::getContext();
            if ($self instanceof Bln) {
                $self->value = $value ? true : false;
                return $self;
            } else {
                return $value ? true : false;
            }
        });
        $Boolean->instantiate = function () {
            return new Bln();
        };
        $Boolean->set('prototype', Bln::$protoObject);
        $Boolean->setMethods(Bln::$classMethods, true, false, true);
        return $Boolean;
    }
}
Bln::$classMethods = array();
Bln::$protoMethods = array('valueOf' => function () {
    $self = Func::getContext();
    return $self->value;
}, 'toString' => function () {
    $self = Func::getContext();
    return to_string($self->value);
});
Bln::$protoObject = new Object();
Bln::$protoObject->setMethods(Bln::$protoMethods, true, false, true);