| Index: sdk/lib/html/templates/html/impl/impl_Storage.darttemplate
|
| ===================================================================
|
| --- sdk/lib/html/templates/html/impl/impl_Storage.darttemplate (revision 15068)
|
| +++ sdk/lib/html/templates/html/impl/impl_Storage.darttemplate (working copy)
|
| @@ -13,7 +13,7 @@
|
|
|
| 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();
|
|
|