| OLD | NEW |
| (Empty) |
| 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 | |
| 3 // BSD-style license that can be found in the LICENSE file. | |
| 4 | |
| 5 // WARNING: | |
| 6 // This file contains documentation that is merged into the real source. | |
| 7 // Do not make code changes here. | |
| 8 | |
| 9 /// @domName IDBKeyRange | |
| 10 interface IDBKeyRange default _IDBKeyRangeFactoryProvider { | |
| 11 | |
| 12 /** | |
| 13 * @domName IDBKeyRange.only | |
| 14 */ | |
| 15 IDBKeyRange.only(/*IDBKey*/ value); | |
| 16 | |
| 17 /** | |
| 18 * @domName IDBKeyRange.lowerBound | |
| 19 */ | |
| 20 IDBKeyRange.lowerBound(/*IDBKey*/ bound, [bool open]); | |
| 21 | |
| 22 /** | |
| 23 * @domName IDBKeyRange.upperBound | |
| 24 */ | |
| 25 IDBKeyRange.upperBound(/*IDBKey*/ bound, [bool open]); | |
| 26 | |
| 27 /** | |
| 28 * @domName IDBKeyRange.bound | |
| 29 */ | |
| 30 IDBKeyRange.bound(/*IDBKey*/ lower, /*IDBKey*/ upper, | |
| 31 [bool lowerOpen, bool upperOpen]); | |
| 32 | |
| 33 | |
| 34 /** @domName IDBKeyRange.lower */ | |
| 35 final Dynamic lower; | |
| 36 | |
| 37 /** @domName IDBKeyRange.lowerOpen */ | |
| 38 final bool lowerOpen; | |
| 39 | |
| 40 /** @domName IDBKeyRange.upper */ | |
| 41 final Dynamic upper; | |
| 42 | |
| 43 /** @domName IDBKeyRange.upperOpen */ | |
| 44 final bool upperOpen; | |
| 45 } | |
| OLD | NEW |