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 // DO NOT EDIT - unless you are editing documentation as per: | 5 // DO NOT EDIT - unless you are editing documentation as per: |
6 // https://code.google.com/p/dart/wiki/ContributingHTMLDocumentation | 6 // https://code.google.com/p/dart/wiki/ContributingHTMLDocumentation |
7 // Auto-generated dart:html library. | 7 // Auto-generated dart:html library. |
8 | 8 |
9 /** | 9 /** |
10 * HTML elements and other resources for web-based applications that need to | 10 * HTML elements and other resources for web-based applications that need to |
(...skipping 132 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
143 * This isolate is not concurrent. It runs on the browser thread | 143 * This isolate is not concurrent. It runs on the browser thread |
144 * with full access to the DOM. | 144 * with full access to the DOM. |
145 * Note: this API is still evolving and may move to dart:isolate. | 145 * Note: this API is still evolving and may move to dart:isolate. |
146 */ | 146 */ |
147 @Experimental() | 147 @Experimental() |
148 Future<Isolate> spawnDomUri(Uri uri, List<String> args, message) { | 148 Future<Isolate> spawnDomUri(Uri uri, List<String> args, message) { |
149 // TODO(17738): Implement this. | 149 // TODO(17738): Implement this. |
150 throw new UnimplementedError(); | 150 throw new UnimplementedError(); |
151 } | 151 } |
152 | 152 |
153 /// Dartium functions that are a NOOP in dart2js. | |
154 unwrap_jso(dartClass_instance) => dartClass_instance; | |
155 wrap_jso(jsObject) => jsObject; | |
156 createCustomUpgrader(Type customElementClass, $this) => $this; | 153 createCustomUpgrader(Type customElementClass, $this) => $this; |
OLD | NEW |