| Index: sdk/lib/_internal/js_runtime/lib/convert_patch.dart
|
| diff --git a/sdk/lib/_internal/js_runtime/lib/convert_patch.dart b/sdk/lib/_internal/js_runtime/lib/convert_patch.dart
|
| index 2b8a38e876d156ceabc00935afadefa2f43bda6c..8306c782a1d008bdf69507c3be269f9dde94e8ff 100644
|
| --- a/sdk/lib/_internal/js_runtime/lib/convert_patch.dart
|
| +++ b/sdk/lib/_internal/js_runtime/lib/convert_patch.dart
|
| @@ -58,7 +58,7 @@ _convertJsonToDart(json, reviver(key, value)) {
|
| return e;
|
| }
|
|
|
| - // This test is needed to avoid identifing '{"__proto__":[]}' as an Array.
|
| + // This test is needed to avoid identifying '{"__proto__":[]}' as an Array.
|
| // TODO(sra): Replace this test with cheaper '#.constructor === Array' when
|
| // bug 621 below is fixed.
|
| if (JS('bool', 'Object.getPrototypeOf(#) === Array.prototype', e)) {
|
| @@ -103,7 +103,7 @@ _convertJsonToDartLazy(object) {
|
| return object;
|
| }
|
|
|
| - // This test is needed to avoid identifing '{"__proto__":[]}' as an array.
|
| + // This test is needed to avoid identifying '{"__proto__":[]}' as an array.
|
| // TODO(sra): Replace this test with cheaper '#.constructor === Array' when
|
| // bug https://code.google.com/p/v8/issues/detail?id=621 is fixed.
|
| if (JS('bool', 'Object.getPrototypeOf(#) !== Array.prototype', object)) {
|
|
|