Implementation is still in progress. CLs that were landed introduce the skeleton of the system but there are no notifications coming in from the runtime yet.
I don't know what the actual plan is but I would expect that implementation would degrade only performance of the observed objects not the system as whole like prototype did (similar to Object.freeze). -- Vyacheslav Egorov On Tue, Oct 30, 2012 at 3:43 AM, Jake Verbaten <[email protected]> wrote: > Is that the original non-optimized prototype or more optimized iteration of > it? > > > On Mon, Oct 29, 2012 at 5:42 PM, Rick Waldron <[email protected]> > wrote: >> >> Related... v8 just landed support for Object.observe() >> >> -Rick >> >> On Monday, October 29, 2012 at 8:11 PM, Azer Koçulu wrote: >> >> Hi All, >> >> I've created a new JS library for defining properties that can be >> subscribed for updates and can interact with eachother. >> >> Check it here; >> >> https://github.com/azer/ak47 >> >> Readme contains many examples. Here is another one: >> >> var user = ak47({ name: 'joe', 'birthdate': 21 }); >> >> > user.name() >> "joe" >> > user.name.subscribe(console.log); >> > user.name("mike") >> "mike" >> "mike" "joe" >> >> Defining a new property that observes another(s): >> >> > var greeting = ak47(joe.name, function(name){ >> return 'Hello ' + name; >> }); >> > greeting() >> "Hello mike" >> > joe.name("joe") >> > greeting() >> "Hello joe" >> >> What do you think? >> >> Azer >> >> -- >> Job Board: http://jobs.nodejs.org/ >> Posting guidelines: >> https://github.com/joyent/node/wiki/Mailing-List-Posting-Guidelines >> You received this message because you are subscribed to the Google >> Groups "nodejs" group. >> To post to this group, send email to [email protected] >> To unsubscribe from this group, send email to >> [email protected] >> For more options, visit this group at >> http://groups.google.com/group/nodejs?hl=en?hl=en >> >> >> -- >> Job Board: http://jobs.nodejs.org/ >> Posting guidelines: >> https://github.com/joyent/node/wiki/Mailing-List-Posting-Guidelines >> You received this message because you are subscribed to the Google >> Groups "nodejs" group. >> To post to this group, send email to [email protected] >> To unsubscribe from this group, send email to >> [email protected] >> For more options, visit this group at >> http://groups.google.com/group/nodejs?hl=en?hl=en > > > -- > Job Board: http://jobs.nodejs.org/ > Posting guidelines: > https://github.com/joyent/node/wiki/Mailing-List-Posting-Guidelines > You received this message because you are subscribed to the Google > Groups "nodejs" group. > To post to this group, send email to [email protected] > To unsubscribe from this group, send email to > [email protected] > For more options, visit this group at > http://groups.google.com/group/nodejs?hl=en?hl=en -- Job Board: http://jobs.nodejs.org/ Posting guidelines: https://github.com/joyent/node/wiki/Mailing-List-Posting-Guidelines You received this message because you are subscribed to the Google Groups "nodejs" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/nodejs?hl=en?hl=en
