SGTMx2

On Fri, Feb 27, 2015 at 5:12 PM, 'Andreas Rossberg' via v8-users <
[email protected]> wrote:

> Sounds good to me.
>
> On 27 February 2015 at 15:56, Caitlin Potter <[email protected]>
> wrote:
>
>> *Contact emails*
>> [email protected],
>>
>> *Spec*
>> Reflect.apply()
>> <https://people.mozilla.org/%7Ejorendorff/es6-draft.html#sec-reflect.apply>
>>
>> https://people.mozilla.org/%7Ejorendorff/es6-draft.html#sec-reflect.apply
>> Reflect.construct()
>> <https://people.mozilla.org/%7Ejorendorff/es6-draft.html#sec-reflect.construct>
>>
>> https://people.mozilla.org/%7Ejorendorff/es6-draft.html#sec-reflect.construct
>>
>>
>> *Summary*
>> Two routines in the standard library which allow for [[Call]]-ing or
>> [[Construct]]-ing an object using an arbitrary List of arguments.
>>
>> *Motivation*
>> While these standard library routines are spec'd, the primary benefit for
>> implementing them now is for the benefit of spread-calls, and make it easy
>> to improve their performance.
>>
>> An example of this desugaring:
>> Eg: `new Array(first, ...someIterable, last)` ->
>> `Reflect.construct(Array, [first, someIterable0, someIterableN, last])`.
>>
>> *Compatibility risk*
>> The features are spec'd for inclusion, and useful for the implementation
>> of some other features. SpiderMonkey has begun work on an implementation of
>> this API.
>>
>> Mozilla bug #987514 <https://bugzilla.mozilla.org/show_bug.cgi?id=987514>
>>  https://bugzilla.mozilla.org/show_bug.cgi?id=987514
>>
>> *Ongoing technical constraints*
>> For these two features, it's largely possible to re-use existing code.
>> The impact should be relatively minimal.
>>
>> *OWP Launch Tracking Bug* v8:3900
>> <https://code.google.com/p/v8/issues/detail?id=3900>
>> https://code.google.com/p/v8/issues/detail?id=3900
>> Link to entry on the feature dashboard <http://www.chromestatus.com/> None
>> at this time, but there likely will be shortly.
>>
>> Requesting approval to ship? No~
>>
>> --
>> --
>> v8-users mailing list
>> [email protected]
>> http://groups.google.com/group/v8-users
>> ---
>> You received this message because you are subscribed to the Google Groups
>> "v8-users" 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/d/optout.
>>
>
>  --
> --
> v8-users mailing list
> [email protected]
> http://groups.google.com/group/v8-users
> ---
> You received this message because you are subscribed to the Google Groups
> "v8-users" 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/d/optout.
>

-- 
-- 
v8-users mailing list
[email protected]
http://groups.google.com/group/v8-users
--- 
You received this message because you are subscribed to the Google Groups 
"v8-users" 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/d/optout.

Reply via email to