| OLD | NEW |
| 1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 2 // for details. All rights reserved. Use of this source code is governed by a | 2 // for details. All rights reserved. Use of this source code is governed by a |
| 3 // BSD-style license that can be found in the LICENSE file. | 3 // BSD-style license that can be found in the LICENSE file. |
| 4 | 4 |
| 5 part of html; | 5 part of html; |
| 6 | 6 |
| 7 class _Property { | 7 class _Property { |
| 8 _Property(this.name) : | 8 _Property(this.name) : |
| 9 _hasValue = false, | 9 _hasValue = false, |
| 10 writable = false, | 10 writable = false, |
| (...skipping 972 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 983 _scheduleImmediateHelper._schedule(callback); | 983 _scheduleImmediateHelper._schedule(callback); |
| 984 }; | 984 }; |
| 985 | 985 |
| 986 get _pureIsolateScheduleImmediateClosure => ((void callback()) => | 986 get _pureIsolateScheduleImmediateClosure => ((void callback()) => |
| 987 throw new UnimplementedError("scheduleMicrotask in background isolates " | 987 throw new UnimplementedError("scheduleMicrotask in background isolates " |
| 988 "are not supported in the browser")); | 988 "are not supported in the browser")); |
| 989 | 989 |
| 990 void _initializeCustomElement(Element e) { | 990 void _initializeCustomElement(Element e) { |
| 991 _Utils.initializeCustomElement(e); | 991 _Utils.initializeCustomElement(e); |
| 992 } | 992 } |
| 993 |
| 994 // Class for unsupported native browser 'DOM' objects. |
| 995 class _UnsupportedBrowserObject extends NativeFieldWrapperClass2 { |
| 996 } |
| OLD | NEW |