Re: Please help with writing spec for async JSON APIs

2015-08-01 Thread Morningstar, Chip
I confess I don't see the point of this proposal at all, at least with respect to being specifically about JSON. JSON parsing/stringification is pure computation; it's not like I/O where you need something special inside the language runtime's implementation in order to exploit the asynchrony.

RE: Maven like dependency management for browsers

2015-08-01 Thread Mohan.Radhakrishnan
But Maven has many more facilities like the 'Bill of Materials'(BOM) that doesn't need a version. Moreover the dependencies are handled based on the project lifecycles like 'compile','test' etc. Thanks, Mohan From: es-discuss [es-discuss-boun...@mozilla.org] on b

Re: Please help with writing spec for async JSON APIs

2015-08-01 Thread Forbes Lindesay
You probably don’t want to support reviver/replacer in the async methods as they would be very challenging to make performant. ___ es-discuss mailing list es-discuss@mozilla.org https://mail.mozilla.org/listinfo/es-discuss

import {x with x() as y}

2015-08-01 Thread Frankie Bagnardi
There are often situations where the export of a module is only needed as an argument to another function, or for its return value. ```js import _temp1 from 'debug'; let debug = _temp1('foo'); import {readFile as _temp2} from 'fs'; let readFile = promisify(_temp2); import _temp3, {Router} from '