| Index: test/generated_sdk/lib/convert/convert.dart
|
| diff --git a/test/generated_sdk/lib/convert/convert.dart b/test/generated_sdk/lib/convert/convert.dart
|
| index 15616f169d611d50ee0faea7f3c2b39e455e7c99..fbb7683bbea7f7b160dae6ec2b3e0019e92a758d 100644
|
| --- a/test/generated_sdk/lib/convert/convert.dart
|
| +++ b/test/generated_sdk/lib/convert/convert.dart
|
| @@ -167,7 +167,7 @@ class _JsonMap implements LinkedHashMap {
|
|
|
| _JsonMap(this._original);
|
|
|
| - operator[](key) {
|
| + operator[](Object key) {
|
| if (_isUpgraded) {
|
| return _upgradedMap[key];
|
| } else if (key is !String) {
|
| @@ -217,7 +217,7 @@ class _JsonMap implements LinkedHashMap {
|
| });
|
| }
|
|
|
| - bool containsValue(value) {
|
| + bool containsValue(Object value) {
|
| if (_isUpgraded) return _upgradedMap.containsValue(value);
|
| List<String> keys = _computeKeys();
|
| for (int i = 0; i < keys.length; i++) {
|
| @@ -227,7 +227,7 @@ class _JsonMap implements LinkedHashMap {
|
| return false;
|
| }
|
|
|
| - bool containsKey(key) {
|
| + bool containsKey(Object key) {
|
| if (_isUpgraded) return _upgradedMap.containsKey(key);
|
| if (key is !String) return false;
|
| return _hasProperty(_original, key);
|
|
|