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

Side by Side Diff: lib/html/templates/html/interface/interface_IDBKeyRange.darttemplate

Issue 11235059: Switch to new library syntax. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: 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 // WARNING: Do not edit - generated code.
6 6
7 part of html;
8
7 $!COMMENT 9 $!COMMENT
8 abstract class $ID$EXTENDS { 10 abstract class $ID$EXTENDS {
9 11
10 /** 12 /**
11 * @domName IDBKeyRange.only 13 * @domName IDBKeyRange.only
12 */ 14 */
13 factory IDBKeyRange.only(/*IDBKey*/ value) => 15 factory IDBKeyRange.only(/*IDBKey*/ value) =>
14 _IDBKeyRangeFactoryProvider.create$(ID)_only(value); 16 _IDBKeyRangeFactoryProvider.create$(ID)_only(value);
15 17
16 /** 18 /**
(...skipping 10 matching lines...) Expand all
27 29
28 /** 30 /**
29 * @domName IDBKeyRange.bound 31 * @domName IDBKeyRange.bound
30 */ 32 */
31 factory IDBKeyRange.bound(/*IDBKey*/ lower, /*IDBKey*/ upper, 33 factory IDBKeyRange.bound(/*IDBKey*/ lower, /*IDBKey*/ upper,
32 [bool lowerOpen = false, bool upperOpen = false]) => 34 [bool lowerOpen = false, bool upperOpen = false]) =>
33 _IDBKeyRangeFactoryProvider.create$(ID)_bound( 35 _IDBKeyRangeFactoryProvider.create$(ID)_bound(
34 lower, upper, lowerOpen, upperOpen); 36 lower, upper, lowerOpen, upperOpen);
35 37
36 $!MEMBERS} 38 $!MEMBERS}
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698