| 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 // WARNING: Do not edit - generated code. | 5 // WARNING: Do not edit - generated code. |
| 6 | 6 |
| 7 part of html; |
| 8 |
| 7 $!COMMENT | 9 $!COMMENT |
| 8 abstract class $ID$EXTENDS { | 10 abstract class $ID$EXTENDS { |
| 9 | 11 |
| 10 /** | 12 /** |
| 11 * @domName IDBKeyRange.only | 13 * @domName IDBKeyRange.only |
| 12 */ | 14 */ |
| 13 factory IDBKeyRange.only(/*IDBKey*/ value) => | 15 factory IDBKeyRange.only(/*IDBKey*/ value) => |
| 14 _IDBKeyRangeFactoryProvider.create$(ID)_only(value); | 16 _IDBKeyRangeFactoryProvider.create$(ID)_only(value); |
| 15 | 17 |
| 16 /** | 18 /** |
| (...skipping 10 matching lines...) Expand all Loading... |
| 27 | 29 |
| 28 /** | 30 /** |
| 29 * @domName IDBKeyRange.bound | 31 * @domName IDBKeyRange.bound |
| 30 */ | 32 */ |
| 31 factory IDBKeyRange.bound(/*IDBKey*/ lower, /*IDBKey*/ upper, | 33 factory IDBKeyRange.bound(/*IDBKey*/ lower, /*IDBKey*/ upper, |
| 32 [bool lowerOpen = false, bool upperOpen = false]) => | 34 [bool lowerOpen = false, bool upperOpen = false]) => |
| 33 _IDBKeyRangeFactoryProvider.create$(ID)_bound( | 35 _IDBKeyRangeFactoryProvider.create$(ID)_bound( |
| 34 lower, upper, lowerOpen, upperOpen); | 36 lower, upper, lowerOpen, upperOpen); |
| 35 | 37 |
| 36 $!MEMBERS} | 38 $!MEMBERS} |
| OLD | NEW |