| OLD | NEW |
| 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 } |
| OLD | NEW |