How would you translate this snippet of javascript to coffeescript? Specifically I'm struggling with how to call .property() on the function definition.
MyApp.president = SC.Object.create({
firstName: "Barack",
lastName: "Obama",
fullName: function() {
return this.get('firstName') + ' ' + this.get('lastName');
// Call this flag to mark the function as a property
}.property('firstName', 'lastName')
});
property('firstName', 'lastName'). If you have declared your dependencies you can also set your property to be cached with.cacheable(). – Peter Wagenet Dec 15 '11 at 23:02