Re: Futures

Actually, I may have gotten it terribly wrong (apologies).  In my prototype
implementation, the following:

    Future.accept(Future.resolve(1)).then(value => {

        console.log(value !== 1);
        return Future.accept(Future.resolve(1));

    }).then(value => {

        console.log(value === 1);
    });

logs

- true
- true

Is that what it should be doing, according to the DOM spec?  Anne, Alex?

{ Kevin }

Received on Friday, 26 April 2013 18:26:02 UTC