summaryrefslogtreecommitdiffstats
path: root/Source/JavaScriptCore/features.json
blob: 55ed02e45f22c7b3e4c870c62744389688773943 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
{
    "specification": [
    {
        "name": "ES6",
        "url": "http://wiki.ecmascript.org/doku.php?id=harmony:specification_drafts",
        "keywords": ["es6", "es2015", "ecmascript"],
        "contact": {
            "name": "Saam Barati",
            "email": "sbarati@apple.com",
            "twitter": "@saambarati"
        }
    },
    {
        "name": "ES7",
        "url": "https://github.com/tc39/ecma262",
        "keywords": ["es7", "ecmascript"]
    },
    {
        "name": "Internationalization API",
        "status": {
            "status": "In Development"
        },
        "url": "http://ecma-international.org/publications/standards/Ecma-402.htm",
        "documentation-url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Intl",
        "webkit-url": "https://bugs.webkit.org/show_bug.cgi?id=90906",
        "description": "The Internationalization API provides language sensitive operations for  string, number, and date.",
        "keywords": ["Intl", "Collator", "ECMA-402"],
        "contact": {
            "name": "Andy VanWagoner",
            "email": "thetalecrafter@gmail.com",
            "twitter": "@thetalecrafter"
        }
    },
    {
        "name": "WebAssembly",
        "status": {
            "status": "In Development"
        },
        "url": "http://webassembly.github.io",
        "webkit-url": "https://bugs.webkit.org/show_bug.cgi?id=146064",
        "description": "WebAssembly is a new format for native programs on the web. It aims to support everything that asm.js supports, but allows the VM to sidestep the JS parsing and profiling pipeline entirely.",
        "keywords": ["webassembly", "wasm", "webassy"],
        "contact": {
            "name": "Jon Davis",
            "email": "web-evangelist@apple.com",
            "twitter": "@jonathandavis"
        }
    }
    ],

    "features": [
    {
        "name": "ASM.js",
        "status": {
            "status": "In Development",
            "enabled-by-default": true
        },
        "url": "http://asmjs.org",
        "description": "ASM.js defines a subset of JavaScript that enforce stronger typing and has specific patterns of memory access. ASM.js is rarely hand-written, it is typically generated from other languages by compiler such as Emscripten.",
        "comment": "There is no \"use asm\" mode in JavaScriptCore. Instead WebKit integrates ASM.js optimizations directly in the optimizer. As a result, it is possible to mix ASM-style typing with regular code and still get great performance and power efficiency."
    },
    {
        "name": "Array.prototype.copyWithin",
        "status": {
            "status": "Done",
            "enabled-by-default": true
        },
        "url": "https://people.mozilla.org/~jorendorff/es6-draft.html#sec-array.prototype.copywithin",
        "documentation-url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/copyWithin",
        "webkit-url": "https://bugs.webkit.org/show_bug.cgi?id=145107",
        "specification": "ES6",
        "contact": {
            "name": "Yusuke Suzuki",
            "email": "utatane.tea@gmail.com"
        }
    },
    {
        "name": "Array.prototype.includes",
        "status": {
            "status": "Done",
            "enabled-by-default": true
        },
        "url": "https://github.com/tc39/Array.prototype.includes",
        "documentation-url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/includes",
        "webkit-url": "https://bugs.webkit.org/show_bug.cgi?id=142707",
        "specification": "ES7"
    },
    {
        "name": "Arrow Functions",
        "status": {
            "status": "In Development",
            "enabled-by-default": true
        },
        "url": "http://www.ecma-international.org/ecma-262/6.0/index.html#sec-arrow-function-definitions",
        "documentation-url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Functions/Arrow_functions",
        "description": "Arrow functions are a new type of function expression in ES6 that lexically binds this, new.target, arguments, and super.",
        "specification": "ES6"
    },
    {
        "name": "Block Scoping",
        "status": {
            "status": "In Development",
            "enabled-by-default": true
        },
        "url": "http://www.ecma-international.org/ecma-262/6.0/#sec-let-and-const-declarations",
        "documentation-url": "http://www.2ality.com/2015/02/es6-scoping.html",
        "description": "Block Scoping let/const/class variables are a new way of declaring variables that are local to the block they're defined in. They have clearer scoping semantics than var variables.",
        "specification": "ES6"
    },
    {
        "name": "Classes",
        "status": {
            "status": "In Development",
            "enabled-by-default": true
        },
        "url": "http://www.ecma-international.org/ecma-262/6.0/#sec-class-definitions",
        "documentation-url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Classes",
        "description": "Classes are a way to write object oriented code in JavaScript with standard syntax and semantics.",
        "specification": "ES6"
    },
    {
        "name": "Default Parameter Values",
        "status": {
            "status": "Done",
            "enabled-by-default": true
        },
        "url": "http://www.ecma-international.org/ecma-262/6.0/#sec-function-definitions",
        "documentation-url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Functions/Default_parameters",
        "description": "Default parameter values are a convenient way to specify expressions that parameters should evaluate to when undefined (or nothing) is passed in as a function argument.",
        "specification": "ES6"
    },
    {
        "name": "Destructuring Syntax",
        "status": {
            "status": "Done",
            "enabled-by-default": true
        },
        "url": "http://www.ecma-international.org/ecma-262/6.0/#sec-destructuring-assignment",
        "documentation-url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Operators/Destructuring_assignment",
        "description": "Destructuring syntax is a shorthand form that allows you to easily assign local variables to the values of an object or array's properties.",
        "specification": "ES6"
    },
    {
        "name": "Generators",
        "status": {
            "status": "Done",
            "enabled-by-default": true
        },
        "url": "http://www.ecma-international.org/ecma-262/6.0/index.html#sec-generator-objects",
        "specification": "ES6",
        "description": "An iterative function object that is interruptible and resumable. Generators are currently spec compliant, however, we're still actively working on improving their performance.",
        "webkit-url": "https://bugs.webkit.org/show_bug.cgi?id=150290",
        "documentation-url": "https://hacks.mozilla.org/2015/05/es6-in-depth-generators/",
        "contact": {
            "name": "Yusuke Suzuki",
            "twitter": "@Constellation",
            "email": "utatane.tea@gmail.com"
        }
    },
    {
        "name": "Map Data Structure",
        "status": {
            "status": "Done",
            "enabled-by-default": true
        },
        "url": "http://people.mozilla.org/~jorendorff/es6-draft.html#sec-map-constructor",
        "documentation-url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Map",
        "webkit-url": "https://bugs.webkit.org/show_bug.cgi?id=120333",
        "description": "Map provides an <a href=\"https://en.wikipedia.org/wiki/Associative_array\">associative array data</a> structure that maps keys to values.",
        "specification": "ES6"
    },
    {
        "name": "Modules",
        "status": {
            "status": "In Development",
            "enabled-by-default": true
        },
        "url": "http://www.ecma-international.org/ecma-262/6.0/index.html#sec-modules",
        "documentation-url": "https://hacks.mozilla.org/2015/08/es6-in-depth-modules/",
        "description": "Modules make modularizing code and splitting it across different files easy because the syntax and semantics are now standard in the JavaScript langauge.",
        "specification": "ES6"
    },
    {
        "name": "Number Object Extensions",
        "status": {
            "status": "Done",
            "enabled-by-default": true
        },
        "url": "http://people.mozilla.org/~jorendorff/es6-draft.html#sec-number-objects",
        "documentation-url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Number",
        "webkit-url": "https://bugs.webkit.org/show_bug.cgi?id=131707",
        "specification": "ES6",
        "description": "Extend Number with the methods Number.isFinite(), Number.isInteger(), Number.isSafeInteger(), Number.isNaN() and the attributes Number.EPSILON, Number.MIN_SAFE_INTEGER, Number.MAX_SAFE_INTEGER."
    },
    {
        "name": "Octal and Binary Literals",
        "status": {
            "status": "Done",
            "enabled-by-default": true
        },
        "url": "https://people.mozilla.org/~jorendorff/es6-draft.html#sec-literals-numeric-literals",
        "webkit-url": "https://bugs.webkit.org/show_bug.cgi?id=142681",
        "specification": "ES6",
        "description": "New syntax for number literals. Numbers can be provided as binary (e.g. 0b001001) or octal (e.g. 0o24)."
    },
    {
        "name": "Promise Objects",
        "status": {
            "status": "Done",
            "enabled-by-default": true,
            "shipped": ["ios8-safari", "osx-safari-7.1"]
        },
        "url": "https://people.mozilla.org/~jorendorff/es6-draft.html#sec-promise-objects",
        "documentation-url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Promise",
        "webkit-url": "https://bugs.webkit.org/show_bug.cgi?id=120260",
        "specification": "ES6"
    },
    {
        "name": "Proxy Objects",
        "status": {
            "status": "Under Consideration"
        },
        "url": "http://www.ecma-international.org/ecma-262/6.0/index.html#sec-proxy-objects",
        "webkit-url": "https://bugs.webkit.org/show_bug.cgi?id=35731",
        "specification": "ES6",
        "description": "An intermediary object that defines custom basic behaviors of another object such as property lookup, assignment, enumeration.",
        "contact": {
            "name": "Jon Davis",
            "twitter": "@jonathandavis",
            "email": "web-evangelist@apple.com"
        }
    },
    {
        "name": "Reflect API",
        "status": {
            "status": "In Development",
            "enabled-by-default": true
        },
        "url": "http://www.ecma-international.org/ecma-262/6.0/#sec-reflect-object",
        "documentation-url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Reflect",
        "description": "The Reflect API is a way to set properties and call methods on certain objects that can be intercepted by ES6 Proxies.",
        "specification": "ES6"
    },
    {
        "name": "Rest Parameter",
        "status": {
            "status": "Done",
            "enabled-by-default": true
        },
        "url": "http://www.ecma-international.org/ecma-262/6.0/#sec-function-definitions",
        "documentation-url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Functions/rest_parameters",
        "description": "Rest parameters allow you to collect the arguments, or the arguments after some offset, of a function into a JS array.",
        "specification": "ES6",
        "contact": {
            "name": "Saam Barati",
            "email": "sbarati@apple.com",
            "twitter": "@saambarati"
        }
    },
    {
        "name": "Set Data Structure",
        "status": {
            "status": "Done",
            "enabled-by-default": true
        },
        "url": "https://people.mozilla.org/~jorendorff/es6-draft.html#sec-set-constructor",
        "documentation-url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Set",
        "webkit-url": "https://bugs.webkit.org/show_bug.cgi?id=120549",
        "description": "Set is a collection of unique objects.",
        "specification": "ES6"
    },
    {
        "name": "Symbol Objects",
        "status": {
            "status": "Done",
            "enabled-by-default": true
        },
        "url": "https://people.mozilla.org/~jorendorff/es6-draft.html#sec-symbol-objects",
        "documentation-url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Symbol",
        "webkit-url": "https://bugs.webkit.org/show_bug.cgi?id=140435",
        "specification": "ES6",
        "contact": {
            "name": "Yusuke Suzuki",
            "email": "utatane.tea@gmail.com"
        }
    },
    {
        "name": "Tagged Templates",
        "status": {
            "status": "Done",
            "enabled-by-default": true
        },
        "url": "http://people.mozilla.org/~jorendorff/es6-draft.html#sec-tagged-templates",
        "documentation-url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/template_strings",
        "webkit-url": "https://bugs.webkit.org/show_bug.cgi?id=143183",
        "description": "The tagged-templates (like String.raw`Hello ${World}`) provides a way to modify the produced string from a given template-literals with a function.",
        "specification": "ES6",
        "contact": {
            "name": "Yusuke Suzuki",
            "email": "utatane.tea@gmail.com"
        }
    },
    {
        "name": "Tail Calls",
        "status": {
            "status": "Done",
            "enabled-by-default": true
        },
        "url": "http://www.ecma-international.org/ecma-262/6.0/index.html#sec-tail-position-calls",
        "documentation-url": "http://www.2ality.com/2015/06/tail-call-optimization.html",
        "description": "Tail Calls allow you to make function calls that are in tail position without growing the stack. It is commonly used to write loops using function calls instead of for or while syntax.",
        "specification": "ES6"
    },
    {
        "name": "Template Literals",
        "status": {
            "status": "Done",
            "enabled-by-default": true
        },
        "url": "http://people.mozilla.org/~jorendorff/es6-draft.html#sec-template-literals",
        "documentation-url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/template_strings",
        "webkit-url": "https://bugs.webkit.org/show_bug.cgi?id=142691",
        "description": "The template-literals (like `Hello ${World}`) provides string interpolation feature. Line terminators are also allowed in the template-literals.",
        "specification": "ES6",
        "contact": {
            "name": "Yusuke Suzuki",
            "email": "utatane.tea@gmail.com"
        }
    },
    {
        "name": "WeakMap",
        "status": {
            "status": "Done",
            "enabled-by-default": true
        },
        "url": "http://people.mozilla.org/~jorendorff/es6-draft.html#sec-weakmap-objects",
        "documentation-url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/WeakMap",
        "webkit-url": "https://bugs.webkit.org/show_bug.cgi?id=120912",
        "description": "WeakMap provides an <a href=\"https://en.wikipedia.org/wiki/Associative_array\">associative array data</a> structure that maps keys to values. WeakMap's keys must be objects.",
        "specification": "ES6"
    },
    {
        "name": "WeakSet",
        "status": {
            "status": "Done",
            "enabled-by-default": true
        },
        "url": "http://people.mozilla.org/~jorendorff/es6-draft.html#sec-weakset-objects",
        "documentation-url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/WeakSet",
        "webkit-url": "https://bugs.webkit.org/show_bug.cgi?id=142408",
        "description": "WeakSet is a collection of unique objects. Keys stored in WeakSet are referenced weakly.",
        "specification": "ES6",
        "contact": {
            "name": "Yusuke Suzuki",
            "email": "utatane.tea@gmail.com"
        }
    },
    {
        "name": "for...of Loops",
        "status": {
            "status": "Done",
            "enabled-by-default": true
        },
        "url": "http://people.mozilla.org/~jorendorff/es6-draft.html#sec-for-in-and-for-of-statements",
        "documentation-url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Statements/for...of",
        "description": "The for...of loops iterate over the values provided by the iterator of the target object.",
        "specification": "ES6",
        "comment": "Older versions of WebKit only supported iterating JavaScript arrays."
    },
    {
        "name": "new.target",
        "status": {
            "status": "Done",
            "enabled-by-default": true
        },
        "url": "http://www.ecma-international.org/ecma-262/6.0/#sec-built-in-function-objects",
        "documentation-url": "https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Operators/new.target",
        "description": "new.target allows you to detect if a function or constructor was instantiated with the new operator, or if instead it was called using normal function calling syntax.",
        "specification": "ES6"
    }
    ]
}