| Index: sdk/lib/html/dartium/html_dartium.dart
|
| diff --git a/sdk/lib/html/dartium/html_dartium.dart b/sdk/lib/html/dartium/html_dartium.dart
|
| index 954772603949c5f88ed55564d07c805951da94c2..7a8156ba473b05876794af8b0559aa4d76f93de8 100644
|
| --- a/sdk/lib/html/dartium/html_dartium.dart
|
| +++ b/sdk/lib/html/dartium/html_dartium.dart
|
| @@ -21740,7 +21740,7 @@ class Storage extends NativeFieldWrapperClass1 implements Map<String, String> {
|
|
|
| String operator [](String key) => $dom_getItem(key);
|
|
|
| - void operator []=(String key, String value) => $dom_setItem(key, value);
|
| + void operator []=(String key, String value) { $dom_setItem(key, value); }
|
|
|
| String putIfAbsent(String key, String ifAbsent()) {
|
| if (!containsKey(key)) this[key] = ifAbsent();
|
|
|