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 91 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
102 | 102 |
103 static KeyRange createKeyRange_bound( | 103 static KeyRange createKeyRange_bound( |
104 /*IDBKey*/ lower, /*IDBKey*/ upper, | 104 /*IDBKey*/ lower, /*IDBKey*/ upper, |
105 [bool lowerOpen = false, bool upperOpen = false]) => | 105 [bool lowerOpen = false, bool upperOpen = false]) => |
106 KeyRange.bound_(lower, upper, lowerOpen, upperOpen); | 106 KeyRange.bound_(lower, upper, lowerOpen, upperOpen); |
107 } | 107 } |
108 // FIXME: Can we make this private? | 108 // FIXME: Can we make this private? |
109 final indexed_dbBlinkMap = { | 109 final indexed_dbBlinkMap = { |
110 $!TYPE_MAP | 110 $!TYPE_MAP |
111 }; | 111 }; |
| 112 |
| 113 $if JSINTEROP |
| 114 // FIXME: Can we make this private? |
| 115 final indexed_dbBlinkFunctionMap = { |
| 116 $!TYPE_FUNCTION_MAP |
| 117 }; |
| 118 $endif |
OLD | NEW |