| 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 _IDBKeyRangeFactoryProvider { | |
| 16 | |
| 17 factory IDBKeyRange.only(/*IDBKey*/ value) => _dummy(); | |
| 18 factory IDBKeyRange.lowerBound(/*IDBKey*/ bound, [bool open]) => _dummy(); | |
| 19 factory IDBKeyRange.upperBound(/*IDBKey*/ bound, [bool open]) => _dummy(); | |
| 20 factory IDBKeyRange.bound(/*IDBKey*/ lower, /*IDBKey*/ upper, | |
| 21 [bool lowerOpen, bool upperOpen]) => _dummy(); | |
| 22 } | |
| 23 | |
| 24 class _TypedArrayFactoryProvider { | 15 class _TypedArrayFactoryProvider { |
| 25 | 16 |
| 26 factory Float32Array(int length) => _dummy(); | 17 factory Float32Array(int length) => _dummy(); |
| 27 factory Float32Array.fromList(List<num> list) => _dummy(); | 18 factory Float32Array.fromList(List<num> list) => _dummy(); |
| 28 factory Float32Array.fromBuffer(ArrayBuffer buffer) => _dummy(); | 19 factory Float32Array.fromBuffer(ArrayBuffer buffer) => _dummy(); |
| 29 | 20 |
| 30 factory Float64Array(int length) => _dummy(); | 21 factory Float64Array(int length) => _dummy(); |
| 31 factory Float64Array.fromList(List<num> list) => _dummy(); | 22 factory Float64Array.fromList(List<num> list) => _dummy(); |
| 32 factory Float64Array.fromBuffer(ArrayBuffer buffer) => _dummy(); | 23 factory Float64Array.fromBuffer(ArrayBuffer buffer) => _dummy(); |
| 33 | 24 |
| (...skipping 28 matching lines...) Expand all Loading... |
| 62 | 53 |
| 63 class _WebKitPointFactoryProvider { | 54 class _WebKitPointFactoryProvider { |
| 64 | 55 |
| 65 factory WebKitPoint(num x, num y) => _dummy(); | 56 factory WebKitPoint(num x, num y) => _dummy(); |
| 66 } | 57 } |
| 67 | 58 |
| 68 class _WebSocketFactoryProvider { | 59 class _WebSocketFactoryProvider { |
| 69 | 60 |
| 70 factory WebSocket(String url) => _dummy(); | 61 factory WebSocket(String url) => _dummy(); |
| 71 } | 62 } |
| OLD | NEW |