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 }
_______________________________________________
es-discuss mailing list
es-discuss@mozilla.org
https://mail.mozilla.org/listinfo/es-discuss

Reply via email to