Index: client/html/release/htmlimpl.dart |
diff --git a/client/html/release/htmlimpl.dart b/client/html/release/htmlimpl.dart |
index 1ea897b18e9a815d0ff8d384dce93fe86db5b539..694b0df8f167a592983a842925f9ba00b752f073 100644 |
--- a/client/html/release/htmlimpl.dart |
+++ b/client/html/release/htmlimpl.dart |
@@ -22172,7 +22172,8 @@ class DOMWrapperBase { |
DOMWrapperBase._wrap(this._ptr) { |
// We should never be creating duplicate wrappers. |
- assert(_ptr.dartObjectLocalStorage === null); |
+ bool isEmpty = _ptr.dartObjectLocalStorage === null; |
+ assert(isEmpty); |
Bob Nystrom
2012/02/01 18:41:13
Is this a workaround for that bug last night? If s
Jacob
2012/02/01 21:12:02
There is a comment. I just didn't run the release
|
_ptr.dartObjectLocalStorage = this; |
} |
} |
@@ -23137,7 +23138,7 @@ class EventTargetWrappingImplementation extends DOMWrapperBase implements EventT |
return _on; |
} |
} |
-// Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
+// Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file |
Bob Nystrom
2012/02/01 18:41:13
Should be 2012.
|
// for details. All rights reserved. Use of this source code is governed by a |
// BSD-style license that can be found in the LICENSE file. |