On Monday, January 28, 2013, rtweed wrote: > Interesting, Rick. > > The getters and setters I'm using in my API (see > https://github.com/robtweed/ewdGateway2/blob/master/lib/ewdGlobals.js) > seem to me to provide what's needed for abstracting access to Mumps > GlobalNodes, whilst avoiding the risk of using something as new and in-flux > as Harmony Proxies. >
Accessor properties (what you call getters and setters) have specified since ES5, 2009—I wasn't talking about them, in fact I completely agree with your solution to use those. Proxy is stealth bomber where this just needs "more leg room" on JetBlue ;) You should probably also update that to use one Object.defineProperties() wherever there is currently many Object.defineProperty()s Rick > However, I'm happy for further suggestions. > > Rob > > On Tuesday, January 29, 2013 12:38:31 AM UTC, Rick Waldron wrote: >> >> If you expect the code to work in one years time, don't use harmony >> proxies. >> >> 1. The implementation in v8 is not the latest Proxy spec... >> 2. The spec itself is still in flux, though close to completion. >> 3. Once the Proxy spec is reified and v8 updates, I doubt there will be >> any grace period, as flag features are "use at own risk". >> >> >> Rick >> >> >>> -- > -- > 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]<javascript:_e({}, 'cvml', '[email protected]');> > To unsubscribe from this group, send email to > [email protected] <javascript:_e({}, 'cvml', > 'nodejs%[email protected]');> > For more options, visit this group at > http://groups.google.com/group/nodejs?hl=en?hl=en > > --- > You received this message because you are subscribed to the Google Groups > "nodejs" group. > To unsubscribe from this group and stop receiving emails from it, send an > email to [email protected] <javascript:_e({}, 'cvml', > 'nodejs%[email protected]');>. > For more options, visit https://groups.google.com/groups/opt_out. > > > -- -- 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 --- You received this message because you are subscribed to the Google Groups "nodejs" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. For more options, visit https://groups.google.com/groups/opt_out.
