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 | 5 |
6 _dummy() { | 6 _dummy() { |
7 throw const NotImplementedException(); | 7 throw const NotImplementedException(); |
8 } | 8 } |
9 | 9 |
10 class _AudioContextFactoryProvider { | 10 class _AudioContextFactoryProvider { |
(...skipping 62 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
73 | 73 |
74 class _WebSocketFactoryProvider { | 74 class _WebSocketFactoryProvider { |
75 | 75 |
76 factory WebSocket(String url) => _dummy(); | 76 factory WebSocket(String url) => _dummy(); |
77 } | 77 } |
78 | 78 |
79 class _XMLHttpRequestFactoryProvider { | 79 class _XMLHttpRequestFactoryProvider { |
80 | 80 |
81 factory XMLHttpRequest() => _dummy(); | 81 factory XMLHttpRequest() => _dummy(); |
82 } | 82 } |
| 83 |
| 84 class _XSLTProcessorFactoryProvider { |
| 85 |
| 86 factory XSLTProcessor() => _dummy(); |
| 87 } |
OLD | NEW |