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

Side by Side Diff: sdk/lib/indexed_db/dart2js/indexed_db_dart2js.dart

Issue 11770004: Rename Date to DateTime. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 years, 11 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 library indexed_db; 1 library indexed_db;
2 2
3 import 'dart:html'; 3 import 'dart:html';
4 import 'dart:html_common'; 4 import 'dart:html_common';
5 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 5 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
6 // for details. All rights reserved. Use of this source code is governed by a 6 // for details. All rights reserved. Use of this source code is governed by a
7 // BSD-style license that can be found in the LICENSE file. 7 // BSD-style license that can be found in the LICENSE file.
8 8
9 // DO NOT EDIT 9 // DO NOT EDIT
10 // Auto-generated dart:svg library. 10 // Auto-generated dart:svg library.
(...skipping 79 matching lines...) Expand 10 before | Expand all | Expand 10 after
90 containsDate(object) { 90 containsDate(object) {
91 if (isJavaScriptDate(object)) return true; 91 if (isJavaScriptDate(object)) return true;
92 if (object is List) { 92 if (object is List) {
93 for (int i = 0; i < object.length; i++) { 93 for (int i = 0; i < object.length; i++) {
94 if (containsDate(object[i])) return true; 94 if (containsDate(object[i])) return true;
95 } 95 }
96 } 96 }
97 return false; // number, string. 97 return false; // number, string.
98 } 98 }
99 if (containsDate(nativeKey)) { 99 if (containsDate(nativeKey)) {
100 throw new UnimplementedError('Key containing Date'); 100 throw new UnimplementedError('Key containing DateTime');
101 } 101 }
102 // TODO: Cache conversion somewhere? 102 // TODO: Cache conversion somewhere?
103 return nativeKey; 103 return nativeKey;
104 } 104 }
105 105
106 /** 106 /**
107 * Converts a Dart object into a valid IDBKey. 107 * Converts a Dart object into a valid IDBKey.
108 * 108 *
109 * May return the original input. Does not mutate input. 109 * May return the original input. Does not mutate input.
110 * 110 *
111 * If necessary, [dartKey] may be copied to ensure all lists are converted into 111 * If necessary, [dartKey] may be copied to ensure all lists are converted into
112 * JavaScript Arrays and Dart Dates into JavaScript Dates. 112 * JavaScript Arrays and Dart Dates into JavaScript Dates.
113 */ 113 */
114 _convertDartToNative_IDBKey(dartKey) { 114 _convertDartToNative_IDBKey(dartKey) {
115 // TODO: Implement. 115 // TODO: Implement.
116 return dartKey; 116 return dartKey;
117 } 117 }
118 118
119 119
120 120
121 /// May modify original. If so, action is idempotent. 121 /// May modify original. If so, action is idempotent.
122 _convertNativeToDart_IDBAny(object) { 122 _convertNativeToDart_IDBAny(object) {
123 return convertNativeToDart_AcceptStructuredClone(object, mustCopy: false); 123 return convertNativeToDart_AcceptStructuredClone(object, mustCopy: false);
124 } 124 }
125 125
126 126
127 const String _idbKey = '=List|=Object|num|String'; // TODO(sra): Add Date. 127 const String _idbKey = '=List|=Object|num|String'; // TODO(sra): Add DateTime.
128 const _annotation_Creates_IDBKey = const Creates(_idbKey); 128 const _annotation_Creates_IDBKey = const Creates(_idbKey);
129 const _annotation_Returns_IDBKey = const Returns(_idbKey); 129 const _annotation_Returns_IDBKey = const Returns(_idbKey);
130 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 130 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
131 // for details. All rights reserved. Use of this source code is governed by a 131 // for details. All rights reserved. Use of this source code is governed by a
132 // BSD-style license that can be found in the LICENSE file. 132 // BSD-style license that can be found in the LICENSE file.
133 133
134 134
135 /// @domName IDBCursor; @docsEditable true 135 /// @domName IDBCursor; @docsEditable true
136 class Cursor native "*IDBCursor" { 136 class Cursor native "*IDBCursor" {
137 137
(...skipping 834 matching lines...) Expand 10 before | Expand all | Expand 10 after
972 EventListenerList get blocked => this['blocked']; 972 EventListenerList get blocked => this['blocked'];
973 } 973 }
974 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 974 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
975 // for details. All rights reserved. Use of this source code is governed by a 975 // for details. All rights reserved. Use of this source code is governed by a
976 // BSD-style license that can be found in the LICENSE file. 976 // BSD-style license that can be found in the LICENSE file.
977 977
978 978
979 /// @domName IDBAny; @docsEditable true 979 /// @domName IDBAny; @docsEditable true
980 class _Any native "*IDBAny" { 980 class _Any native "*IDBAny" {
981 } 981 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698