| 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 { |
| 11 | 11 |
| 12 factory AudioContext() => _dummy(); | 12 factory AudioContext() => _dummy(); |
| 13 } | 13 } |
| 14 | 14 |
| 15 class _DOMParserFactoryProvider { | |
| 16 | |
| 17 factory DOMParser() => _dummy(); | |
| 18 } | |
| 19 | |
| 20 class _FileReaderFactoryProvider { | |
| 21 | |
| 22 factory FileReader() => _dummy(); | |
| 23 } | |
| 24 | |
| 25 class _TypedArrayFactoryProvider { | 15 class _TypedArrayFactoryProvider { |
| 26 | 16 |
| 27 factory Float32Array(int length) => _dummy(); | 17 factory Float32Array(int length) => _dummy(); |
| 28 factory Float32Array.fromList(List<num> list) => _dummy(); | 18 factory Float32Array.fromList(List<num> list) => _dummy(); |
| 29 factory Float32Array.fromBuffer(ArrayBuffer buffer) => _dummy(); | 19 factory Float32Array.fromBuffer(ArrayBuffer buffer) => _dummy(); |
| 30 | 20 |
| 31 factory Float64Array(int length) => _dummy(); | 21 factory Float64Array(int length) => _dummy(); |
| 32 factory Float64Array.fromList(List<num> list) => _dummy(); | 22 factory Float64Array.fromList(List<num> list) => _dummy(); |
| 33 factory Float64Array.fromBuffer(ArrayBuffer buffer) => _dummy(); | 23 factory Float64Array.fromBuffer(ArrayBuffer buffer) => _dummy(); |
| 34 | 24 |
| (...skipping 19 matching lines...) Expand all Loading... |
| 54 | 44 |
| 55 factory Uint32Array(int length) => _dummy(); | 45 factory Uint32Array(int length) => _dummy(); |
| 56 factory Uint32Array.fromList(List<num> list) => _dummy(); | 46 factory Uint32Array.fromList(List<num> list) => _dummy(); |
| 57 factory Uint32Array.fromBuffer(ArrayBuffer buffer) => _dummy(); | 47 factory Uint32Array.fromBuffer(ArrayBuffer buffer) => _dummy(); |
| 58 | 48 |
| 59 factory Uint8ClampedArray(int length) => _dummy(); | 49 factory Uint8ClampedArray(int length) => _dummy(); |
| 60 factory Uint8ClampedArray.fromList(List<num> list) => _dummy(); | 50 factory Uint8ClampedArray.fromList(List<num> list) => _dummy(); |
| 61 factory Uint8ClampedArray.fromBuffer(ArrayBuffer buffer) => _dummy(); | 51 factory Uint8ClampedArray.fromBuffer(ArrayBuffer buffer) => _dummy(); |
| 62 } | 52 } |
| 63 | 53 |
| 64 class _WebKitCSSMatrixFactoryProvider { | |
| 65 | |
| 66 factory WebKitCSSMatrix([String spec = '']) => _dummy(); | |
| 67 } | |
| 68 | |
| 69 class _WebKitPointFactoryProvider { | 54 class _WebKitPointFactoryProvider { |
| 70 | 55 |
| 71 factory WebKitPoint(num x, num y) => _dummy(); | 56 factory WebKitPoint(num x, num y) => _dummy(); |
| 72 } | 57 } |
| 73 | 58 |
| 74 class _WebSocketFactoryProvider { | 59 class _WebSocketFactoryProvider { |
| 75 | 60 |
| 76 factory WebSocket(String url) => _dummy(); | 61 factory WebSocket(String url) => _dummy(); |
| 77 } | 62 } |
| 78 | |
| 79 class _XMLHttpRequestFactoryProvider { | |
| 80 | |
| 81 factory XMLHttpRequest() => _dummy(); | |
| 82 } | |
| 83 | |
| 84 class _XSLTProcessorFactoryProvider { | |
| 85 | |
| 86 factory XSLTProcessor() => _dummy(); | |
| 87 } | |
| OLD | NEW |