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

Side by Side Diff: tools/dom/templates/html/impl/impl_IDBCursor.darttemplate

Issue 2978213002: Removed DARTIUM codegen for IDLS (sdk/lib/dartium) (Closed)
Patch Set: Update generated darttemplate Created 3 years, 5 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
OLDNEW
1 // Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2013, 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 part of $LIBRARYNAME; 5 part of $LIBRARYNAME;
6 6
7 $(ANNOTATIONS)$(NATIVESPEC)$(CLASS_MODIFIERS)class $CLASSNAME$EXTENDS$IMPLEMENTS { 7 $(ANNOTATIONS)$(NATIVESPEC)$(CLASS_MODIFIERS)class $CLASSNAME$EXTENDS$IMPLEMENTS {
8 @DomName('IDBCursor.delete') 8 @DomName('IDBCursor.delete')
9 Future delete() { 9 Future delete() {
10 try { 10 try {
11 return _completeRequest(_delete()); 11 return _completeRequest(_delete());
12 } catch (e, stacktrace) { 12 } catch (e, stacktrace) {
13 return new Future.error(e, stacktrace); 13 return new Future.error(e, stacktrace);
14 } 14 }
15 } 15 }
16 16
17 @DomName('IDBCursor.value') 17 @DomName('IDBCursor.value')
18 Future update(value) { 18 Future update(value) {
19 try { 19 try {
20 return _completeRequest(_update(value)); 20 return _completeRequest(_update(value));
21 } catch (e, stacktrace) { 21 } catch (e, stacktrace) {
22 return new Future.error(e, stacktrace); 22 return new Future.error(e, stacktrace);
23 } 23 }
24 } 24 }
25 25
26 $if DART2JS
27 @JSName('continue') 26 @JSName('continue')
28 @DomName('IDBCursor.continue') 27 @DomName('IDBCursor.continue')
29 void next([Object key]) { 28 void next([Object key]) {
30 if (key == null) { 29 if (key == null) {
31 JS('void', '#.continue()', this); 30 JS('void', '#.continue()', this);
32 } else { 31 } else {
33 JS('void', '#.continue(#)', this, key); 32 JS('void', '#.continue(#)', this, key);
34 } 33 }
35 } 34 }
36 $endif
37 $!MEMBERS 35 $!MEMBERS
38 } 36 }
OLDNEW
« no previous file with comments | « tools/dom/templates/html/impl/impl_History.darttemplate ('k') | tools/dom/templates/html/impl/impl_IDBDatabase.darttemplate » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698