summaryrefslogtreecommitdiffstats
path: root/js/src/builtin
Commit message (Collapse)AuthorAgeLines
* Handle same-compartment wrappers in TypedArray methods.wolfbeast2018-03-17-40/+35
| | | | | | | | | | | | | | | | | | | | | | CallTypedArrayMethodIfWrapped (and the CallNonGeneric machinery throughout the engine) unwraps the `this` argument, but the other arguments are only rewrapped for the target compartment. The pattern being used before this patch to get the length of a TypedArray or possible TypedArray wrapper is: `callFunction(CallTypedArrayMethodIfWrapped, O, O, "TypedArrayLength")` The first `O` is the `this` value and the second is an argument. If `O` is a cross-compartment wrapper, this works fine. The first `O` is unwrapped, revealing the actual TypedArray object; the second `O` is rewrapped for that TypedArray's compartment, producing the same TypedArray. However, if `O` is a same-compartment wrapper, this doesn't work. The first `O` is unwrapped, revealing the actual TypedArray object in the same compartment; rewrapping the other `O` does nothing to it, since it is already an object in the target compartment. Thus TypedArrayLength receives a `this` value that's an unwrapped TypedArray, but an argument that is still a wrapper. The fix is to have CallTypedArrayMethodIfWrapped targets only expect `this` to be an unwrapped TypedArray.
* Bug 1430761 - Update tzdata in ICU data files to 2018c. r=Waldo, a=lizzardAndré Bargull2018-03-14-1/+1
| | | | | --HG-- extra : rebase_source : cb9ac8a678b6f565091f6d7733b6cd86afde0da7
* Add pluralrules to JS Intlwolfbeast2018-02-07-134/+492
|
* Remove SetGCZeal() stub and its callers.wolfbeast2018-02-03-2/+0
|
* Remove "has-gczeal" property.wolfbeast2018-02-03-4/+0
|
* Remove GCZeal: Base cleanupwolfbeast2018-02-03-202/+0
| | | | UXP repo issue #8
* Add m-esr52 at 52.6.0Matt A. Tobin2018-02-02-0/+46597