| Index: sdk/lib/indexed_db/dart2js/indexed_db_dart2js.dart
|
| diff --git a/sdk/lib/indexed_db/dart2js/indexed_db_dart2js.dart b/sdk/lib/indexed_db/dart2js/indexed_db_dart2js.dart
|
| index 318b36bbca215838ad5243b6ddd3baf873dbfbd3..527b57a13664afdf701b5944b20bc8636a4f2e7c 100644
|
| --- a/sdk/lib/indexed_db/dart2js/indexed_db_dart2js.dart
|
| +++ b/sdk/lib/indexed_db/dart2js/indexed_db_dart2js.dart
|
| @@ -190,11 +190,13 @@ class Cursor native "*IDBCursor" {
|
| @DomName('IDBCursorWithValue')
|
| class CursorWithValue extends Cursor native "*IDBCursorWithValue" {
|
|
|
| + dynamic get value => _convertNativeToDart_IDBAny(this._value);
|
| + @JSName('value')
|
| @DomName('IDBCursorWithValue.value')
|
| @DocsEditable
|
| @annotation_Creates_SerializedScriptValue
|
| @annotation_Returns_SerializedScriptValue
|
| - final Object value;
|
| + final dynamic _value;
|
| }
|
| // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
|
| // for details. All rights reserved. Use of this source code is governed by a
|
| @@ -616,7 +618,7 @@ class ObjectStore native "*IDBObjectStore" {
|
| * the current transaction.
|
| */
|
| @DomName('IDBObjectStore.openCursor')
|
| - Stream<Cursor> openCursor({key, KeyRange range, String direction,
|
| + Stream<CursorWithValue> openCursor({key, KeyRange range, String direction,
|
| bool autoAdvance}) {
|
| var key_OR_range = null;
|
| if (key != null) {
|
|
|