Stories
Slash Boxes
Comments

All the Perl that's Practical to Extract and Report

use Perl Log In

Log In

[ Create a new account ]

malte (1708)

malte
  (email not shown publicly)
http://www.yur.tv/

Perl hacker for this [schaffhausen.de] company. My Dad's Practice [praxisamhogenkamp.de]

Journal of malte (1708)

Wednesday March 19, 2008
04:55 PM

New builder syntax for Joose

[ #35937 ]

Joose now supports two new ways to create Joose.Classes

joosify(MyClass) now turns regular classes into Joose.Clases.

...and you can now use a more JavaScript like Syntax to build Joose.Classes:

Class("Currency", {
    does: Eq,
    has:  ["value", {is: rw}],
    methods: {
        initialize: function (value) {
            this.setValue(value)
        },

        isEqual: function (cur) {
            return this.getValue() == cur.getValue()
        }
    }
})

The Fine Print: The following comments are owned by whoever posted them. We are not responsible for them in any way.
 Full
 Abbreviated
 Hidden
More | Login | Reply
Loading... please wait.