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 ed571ef96f7cdd348c03ed9e29a484bdb6d60147..9c3b3775fff5c5334be291e023b94f41b418b0ba 100644 |
--- a/sdk/lib/indexed_db/dart2js/indexed_db_dart2js.dart |
+++ b/sdk/lib/indexed_db/dart2js/indexed_db_dart2js.dart |
@@ -210,13 +210,13 @@ class Cursor native "*IDBCursor" { |
@DomName('IDBCursorWithValue') |
class CursorWithValue extends Cursor native "*IDBCursorWithValue" { |
- dynamic get value => _convertNativeToDart_IDBAny(this._value); |
+ dynamic get value => _convertNativeToDart_IDBAny(this._get_value); |
@JSName('value') |
@DomName('IDBCursorWithValue.value') |
@DocsEditable |
@annotation_Creates_SerializedScriptValue |
@annotation_Returns_SerializedScriptValue |
- final dynamic _value; |
+ final dynamic _get_value; |
} |
// Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file |
// for details. All rights reserved. Use of this source code is governed by a |
@@ -1072,12 +1072,12 @@ class Request extends EventTarget native "*IDBRequest" { |
@DocsEditable |
final String readyState; |
- dynamic get result => _convertNativeToDart_IDBAny(this._result); |
+ dynamic get result => _convertNativeToDart_IDBAny(this._get_result); |
@JSName('result') |
@DomName('IDBRequest.result') |
@DocsEditable |
@Creates('Null') |
- final dynamic _result; |
+ final dynamic _get_result; |
@DomName('IDBRequest.source') |
@DocsEditable |