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 // DO NOT EDIT | 5 // DO NOT EDIT |
6 // Auto-generated dart:indexed_db library. | 6 // Auto-generated dart:indexed_db library. |
7 | 7 |
8 /** | 8 /** |
9 * A client-side key-value store with support for indexes. | 9 * A client-side key-value store with support for indexes. |
10 * | 10 * |
(...skipping 89 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
100 static KeyRange createKeyRange_upperBound( | 100 static KeyRange createKeyRange_upperBound( |
101 /*IDBKey*/ bound, [bool open = false]) => | 101 /*IDBKey*/ bound, [bool open = false]) => |
102 KeyRange.upperBound_(bound, open); | 102 KeyRange.upperBound_(bound, open); |
103 | 103 |
104 static KeyRange createKeyRange_bound( | 104 static KeyRange createKeyRange_bound( |
105 /*IDBKey*/ lower, /*IDBKey*/ upper, | 105 /*IDBKey*/ lower, /*IDBKey*/ upper, |
106 [bool lowerOpen = false, bool upperOpen = false]) => | 106 [bool lowerOpen = false, bool upperOpen = false]) => |
107 KeyRange.bound_(lower, upper, lowerOpen, upperOpen); | 107 KeyRange.bound_(lower, upper, lowerOpen, upperOpen); |
108 } | 108 } |
109 // FIXME: Can we make this private? | 109 // FIXME: Can we make this private? |
| 110 @Deprecated("Internal Use Only") |
110 final indexed_dbBlinkMap = { | 111 final indexed_dbBlinkMap = { |
111 $!TYPE_MAP | 112 $!TYPE_MAP |
112 }; | 113 }; |
113 | 114 |
114 $if JSINTEROP | 115 $if JSINTEROP |
115 // FIXME: Can we make this private? | 116 // FIXME: Can we make this private? |
| 117 @Deprecated("Internal Use Only") |
116 final indexed_dbBlinkFunctionMap = { | 118 final indexed_dbBlinkFunctionMap = { |
117 $!TYPE_FUNCTION_MAP | 119 $!TYPE_FUNCTION_MAP |
118 }; | 120 }; |
119 $endif | 121 $endif |
OLD | NEW |