Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(91)

Unified Diff: lib/dom/dart2js/dom_dart2js.dart

Issue 10869056: SQLResultRowList.item converts row into map. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: rebase Created 8 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | lib/dom/dom.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: lib/dom/dart2js/dom_dart2js.dart
diff --git a/lib/dom/dart2js/dom_dart2js.dart b/lib/dom/dart2js/dom_dart2js.dart
index 17b7c4ab12f656d745ca0e20f2f9214cbe685ba7..167b09aa85e6ab972b4490b40cbbf3140090b1bb 100644
--- a/lib/dom/dart2js/dom_dart2js.dart
+++ b/lib/dom/dart2js/dom_dart2js.dart
@@ -6224,7 +6224,7 @@ class _SQLResultSetRowListJs extends _DOMTypeJs implements SQLResultSetRowList n
final int length;
- Object item(int index) native;
+ Map item(int index) native;
}
class _SQLTransactionJs extends _DOMTypeJs implements SQLTransaction native "*SQLTransaction" {
@@ -19233,7 +19233,7 @@ interface SQLResultSetRowList {
final int length;
- Object item(int index);
+ Map item(int index);
}
// 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
« no previous file with comments | « no previous file | lib/dom/dom.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698