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

Side by Side Diff: sdk/lib/indexed_db/dartium/indexed_db_dartium.dart

Issue 11896038: Some more refactorings of overload dispatcher generation. (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:async'; 3 import 'dart:async';
4 import 'dart:html'; 4 import 'dart:html';
5 import 'dart:html_common'; 5 import 'dart:html_common';
6 import 'dart:nativewrappers'; 6 import 'dart:nativewrappers';
7 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 7 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
8 // for details. All rights reserved. Use of this source code is governed by a 8 // for details. All rights reserved. Use of this source code is governed by a
9 // BSD-style license that can be found in the LICENSE file. 9 // BSD-style license that can be found in the LICENSE file.
10 10
(...skipping 53 matching lines...) Expand 10 before | Expand all | Expand 10 after
64 @DomName('IDBCursor.advance') 64 @DomName('IDBCursor.advance')
65 @DocsEditable 65 @DocsEditable
66 void advance(int count) native "IDBCursor_advance_Callback"; 66 void advance(int count) native "IDBCursor_advance_Callback";
67 67
68 void continueFunction([/*IDBKey*/ key]) { 68 void continueFunction([/*IDBKey*/ key]) {
69 if (?key) { 69 if (?key) {
70 _continue_1(key); 70 _continue_1(key);
71 return; 71 return;
72 } 72 }
73 _continue_2(); 73 _continue_2();
74 return;
74 } 75 }
75 76
76 @DomName('IDBCursor._continue_1') 77 @DomName('IDBCursor._continue_1')
77 @DocsEditable 78 @DocsEditable
78 void _continue_1(key) native "IDBCursor__continue_1_Callback"; 79 void _continue_1(key) native "IDBCursor__continue_1_Callback";
79 80
80 @DomName('IDBCursor._continue_2') 81 @DomName('IDBCursor._continue_2')
81 @DocsEditable 82 @DocsEditable
82 void _continue_2() native "IDBCursor__continue_2_Callback"; 83 void _continue_2() native "IDBCursor__continue_2_Callback";
83 84
(...skipping 971 matching lines...) Expand 10 before | Expand all | Expand 10 after
1055 1056
1056 // WARNING: Do not edit - generated code. 1057 // WARNING: Do not edit - generated code.
1057 1058
1058 1059
1059 @DocsEditable 1060 @DocsEditable
1060 @DomName('IDBAny') 1061 @DomName('IDBAny')
1061 class _Any extends NativeFieldWrapperClass1 { 1062 class _Any extends NativeFieldWrapperClass1 {
1062 _Any.internal(); 1063 _Any.internal();
1063 1064
1064 } 1065 }
OLDNEW
« no previous file with comments | « sdk/lib/indexed_db/dart2js/indexed_db_dart2js.dart ('k') | tools/dom/scripts/htmldartgenerator.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698