Update V8 bug links. [ci skip]

This commit is contained in:
John-David Dalton
2016-03-04 07:33:32 -08:00
parent 8e6f3e48d0
commit 8682da4962

View File

@@ -1050,7 +1050,7 @@
// for more details. // for more details.
// //
// This also ensures a stable sort in V8 and other engines. // This also ensures a stable sort in V8 and other engines.
// See https://code.google.com/p/v8/issues/detail?id=90 for more details. // See https://bugs.chromium.org/p/v8/issues/detail?id=90 for more details.
return object.index - other.index; return object.index - other.index;
} }
@@ -5509,8 +5509,9 @@
* Sets metadata for `func`. * Sets metadata for `func`.
* *
* **Note:** If this function becomes hot, i.e. is invoked a lot in a short * **Note:** If this function becomes hot, i.e. is invoked a lot in a short
* period of time, it will trip its breaker and transition to an identity function * period of time, it will trip its breaker and transition to an identity
* to avoid garbage collection pauses in V8. See [V8 issue 2070](https://code.google.com/p/v8/issues/detail?id=2070) * function to avoid garbage collection pauses in V8. See
* [V8 issue 2070](https://bugs.chromium.org/p/v8/issues/detail?id=2070)
* for more details. * for more details.
* *
* @private * @private
@@ -13022,7 +13023,7 @@
*/ */
function parseInt(string, radix, guard) { function parseInt(string, radix, guard) {
// Chrome fails to trim leading <BOM> whitespace characters. // Chrome fails to trim leading <BOM> whitespace characters.
// See https://code.google.com/p/v8/issues/detail?id=3109 for more details. // See https://bugs.chromium.org/p/v8/issues/detail?id=3109 for more details.
if (guard || radix == null) { if (guard || radix == null) {
radix = 0; radix = 0;
} else if (radix) { } else if (radix) {