| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
1 parent 70bfc39 commit 9747735
3 files changed
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -38,7 +38,7 @@ | |||
| 38 | 38 | ||
| 39 | 39 | # Reset this number to 0 on major V8 upgrades. | |
| 40 | 40 | # Increment by one for each non-official patch applied to deps/v8. | |
| 41 | - 'v8_embedder_string': '-node.10', | ||
| 41 | + 'v8_embedder_string': '-node.11', | ||
| 42 | 42 | ||
| 43 | 43 | ##### V8 defaults for Node.js ##### | |
| 44 | 44 | ||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -295,7 +295,6 @@ DEFINE_BOOL(js_shipping, true, "enable all shipped JavaScript features") | |||
| 295 | 295 | // Features that are complete (but still behind the --harmony flag). | |
| 296 | 296 | #define HARMONY_STAGED_BASE(V) | |
| 297 | 297 | #define JAVASCRIPT_STAGED_FEATURES_BASE(V) \ | |
| 298 | - V(js_explicit_resource_management, "explicit resource management") \ | ||
| 299 | 298 | V(js_float16array, \ | |
| 300 | 299 | "Float16Array, Math.f16round, DataView.getFloat16, DataView.setFloat16") | |
| 301 | 300 | ||
@@ -311,7 +310,7 @@ DEFINE_BOOL(js_shipping, true, "enable all shipped JavaScript features") | |||
| 311 | 310 | #endif | |
| 312 | 311 | ||
| 313 | 312 | // Features that are shipping (turned on by default, but internal flag remains). | |
| 314 | - #define HARMONY_SHIPPING_BASE(V) \ | ||
| 313 | + #define HARMONY_SHIPPING_BASE(V) \ | ||
| 315 | 314 | V(harmony_import_attributes, "harmony import attributes") | |
| 316 | 315 | ||
| 317 | 316 | #define JAVASCRIPT_SHIPPING_FEATURES_BASE(V) \ | |
@@ -320,7 +319,8 @@ DEFINE_BOOL(js_shipping, true, "enable all shipped JavaScript features") | |||
| 320 | 319 | V(js_promise_try, "Promise.try") \ | |
| 321 | 320 | V(js_atomics_pause, "Atomics.pause") \ | |
| 322 | 321 | V(js_error_iserror, "Error.isError") \ | |
| 323 | - V(js_regexp_escape, "RegExp.escape") | ||
| 322 | + V(js_regexp_escape, "RegExp.escape") \ | ||
| 323 | + V(js_explicit_resource_management, "explicit resource management") | ||
| 324 | 324 | ||
| 325 | 325 | #ifdef V8_INTL_SUPPORT | |
| 326 | 326 | #define HARMONY_SHIPPING(V) HARMONY_SHIPPING_BASE(V) | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -9,7 +9,7 @@ var iteratorPrototype = arrayIteratorPrototype.__proto__; | |||
| 9 | 9 | assertSame(Object.prototype, Object.getPrototypeOf(iteratorPrototype)); | |
| 10 | 10 | assertTrue(Object.isExtensible(iteratorPrototype)); | |
| 11 | 11 | assertSame(12, Object.getOwnPropertyNames(iteratorPrototype).length); | |
| 12 | - assertSame(2, Object.getOwnPropertySymbols(iteratorPrototype).length); | ||
| 12 | + assertSame(3, Object.getOwnPropertySymbols(iteratorPrototype).length); | ||
| 13 | 13 | assertSame(Symbol.iterator, | |
| 14 | 14 | Object.getOwnPropertySymbols(iteratorPrototype)[0]); | |
| 15 | 15 | ||
| Back | FazBrowse Home | New Git URL |
0 commit comments