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

Side by Side Diff: sdk/lib/html/templates/html/impl/impl_IDBKeyRange.darttemplate

Issue 11364134: Merge libv1. (Closed) Base URL: https://dart.googlecode.com/svn/experimental/lib_v2/dart
Patch Set: Reupload due to error Created 8 years, 1 month 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 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2012, 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 // WARNING: Do not edit - generated code. 5 class $CLASSNAME$EXTENDS$IMPLEMENTS$NATIVESPEC {
6
7 part of html;
8
9 $!COMMENT
10 abstract class $ID$EXTENDS {
11
12 /** 6 /**
13 * @domName IDBKeyRange.only 7 * @domName IDBKeyRange.only
14 */ 8 */
15 factory IDBKeyRange.only(/*IDBKey*/ value) => 9 factory IDBKeyRange.only(/*IDBKey*/ value) =>
16 _IDBKeyRangeFactoryProvider.create$(ID)_only(value); 10 _IDBKeyRangeFactoryProvider.create$(CLASSNAME)_only(value);
17 11
18 /** 12 /**
19 * @domName IDBKeyRange.lowerBound 13 * @domName IDBKeyRange.lowerBound
20 */ 14 */
21 factory IDBKeyRange.lowerBound(/*IDBKey*/ bound, [bool open = false]) => 15 factory IDBKeyRange.lowerBound(/*IDBKey*/ bound, [bool open = false]) =>
22 _IDBKeyRangeFactoryProvider.create$(ID)_lowerBound(bound, open); 16 _IDBKeyRangeFactoryProvider.create$(CLASSNAME)_lowerBound(bound, open);
23 17
24 /** 18 /**
25 * @domName IDBKeyRange.upperBound 19 * @domName IDBKeyRange.upperBound
26 */ 20 */
27 factory IDBKeyRange.upperBound(/*IDBKey*/ bound, [bool open = false]) => 21 factory IDBKeyRange.upperBound(/*IDBKey*/ bound, [bool open = false]) =>
28 _IDBKeyRangeFactoryProvider.create$(ID)_upperBound(bound, open); 22 _IDBKeyRangeFactoryProvider.create$(CLASSNAME)_upperBound(bound, open);
29 23
30 /** 24 /**
31 * @domName IDBKeyRange.bound 25 * @domName IDBKeyRange.bound
32 */ 26 */
33 factory IDBKeyRange.bound(/*IDBKey*/ lower, /*IDBKey*/ upper, 27 factory IDBKeyRange.bound(/*IDBKey*/ lower, /*IDBKey*/ upper,
34 [bool lowerOpen = false, bool upperOpen = false]) => 28 [bool lowerOpen = false, bool upperOpen = false]) =>
35 _IDBKeyRangeFactoryProvider.create$(ID)_bound( 29 _IDBKeyRangeFactoryProvider.create$(CLASSNAME)_bound(
36 lower, upper, lowerOpen, upperOpen); 30 lower, upper, lowerOpen, upperOpen);
37 31
38 $!MEMBERS} 32 $!MEMBERS
33 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698