| Index: client/html/src/DOMWrapperBase.dart
|
| diff --git a/client/html/src/DOMWrapperBase.dart b/client/html/src/DOMWrapperBase.dart
|
| index c25786327b874acf736f809e154245ef4c883cb2..faf09519d76c6603afa0bb5af665d12242a11439 100644
|
| --- a/client/html/src/DOMWrapperBase.dart
|
| +++ b/client/html/src/DOMWrapperBase.dart
|
| @@ -5,10 +5,12 @@
|
| class DOMWrapperBase {
|
| final _ptr;
|
|
|
| + const DOMWrapperBase._empty() : this._ptr = null;
|
| +
|
| DOMWrapperBase._wrap(this._ptr) {
|
| - // We should never be creating duplicate wrappers.
|
| - assert(_ptr.dartObjectLocalStorage === null);
|
| - _ptr.dartObjectLocalStorage = this;
|
| + // We should never be creating duplicate wrappers.
|
| + assert(_ptr.dartObjectLocalStorage === null);
|
| + _ptr.dartObjectLocalStorage = this;
|
| }
|
| }
|
|
|
|
|