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 library dart.dom.indexed_db; | 8 library dart.dom.indexed_db; |
9 | 9 |
10 import 'dart:async'; | 10 import 'dart:async'; |
(...skipping 19 matching lines...) Expand all Loading... |
30 | 30 |
31 static KeyRange createKeyRange_bound( | 31 static KeyRange createKeyRange_bound( |
32 /*IDBKey*/ lower, /*IDBKey*/ upper, | 32 /*IDBKey*/ lower, /*IDBKey*/ upper, |
33 [bool lowerOpen = false, bool upperOpen = false]) => | 33 [bool lowerOpen = false, bool upperOpen = false]) => |
34 KeyRange.bound_(lower, upper, lowerOpen, upperOpen); | 34 KeyRange.bound_(lower, upper, lowerOpen, upperOpen); |
35 } | 35 } |
36 // FIXME: Can we make this private? | 36 // FIXME: Can we make this private? |
37 final indexed_dbBlinkMap = { | 37 final indexed_dbBlinkMap = { |
38 $!TYPE_MAP | 38 $!TYPE_MAP |
39 }; | 39 }; |
| 40 |
| 41 $if JSINTEROP |
| 42 // FIXME: Can we make this private? |
| 43 final indexed_dbBlinkFunctionMap = { |
| 44 $!TYPE_FUNCTION_MAP |
| 45 }; |
| 46 $endif |
OLD | NEW |