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

Side by Side Diff: lib/runtime/dart/indexed_db.js

Issue 1767803002: a few small refactorings to closure workarounds (Closed) Base URL: git@github.com:dart-lang/dev_compiler.git@master
Patch Set: Created 4 years, 9 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
« no previous file with comments | « lib/runtime/dart/html_common.js ('k') | lib/runtime/dart/svg.js » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 dart_library.library('dart/indexed_db', null, /* Imports */[ 1 dart_library.library('dart/indexed_db', null, /* Imports */[
2 'dart/_runtime', 2 'dart/_runtime',
3 'dart/core', 3 'dart/core',
4 'dart/html_common', 4 'dart/html_common',
5 'dart/_js_helper', 5 'dart/_js_helper',
6 'dart/async',
6 'dart/_interceptors', 7 'dart/_interceptors',
7 'dart/async',
8 'dart/_metadata', 8 'dart/_metadata',
9 'dart/html' 9 'dart/html'
10 ], /* Lazy imports */[ 10 ], /* Lazy imports */[
11 ], function(exports, dart, core, html_common, _js_helper, _interceptors, async, _metadata, html) { 11 ], function(exports, dart, core, html_common, _js_helper, async, _interceptors, _metadata, html) {
12 'use strict'; 12 'use strict';
13 let dartx = dart.dartx; 13 let dartx = dart.dartx;
14 class _KeyRangeFactoryProvider extends core.Object { 14 class _KeyRangeFactoryProvider extends core.Object {
15 static createKeyRange_only(value) { 15 static createKeyRange_only(value) {
16 return _KeyRangeFactoryProvider._only(_KeyRangeFactoryProvider._class(), _ KeyRangeFactoryProvider._translateKey(value)); 16 return _KeyRangeFactoryProvider._only(_KeyRangeFactoryProvider._class(), _ KeyRangeFactoryProvider._translateKey(value));
17 } 17 }
18 static createKeyRange_lowerBound(bound, open) { 18 static createKeyRange_lowerBound(bound, open) {
19 if (open === void 0) open = false; 19 if (open === void 0) open = false;
20 return _KeyRangeFactoryProvider._lowerBound(_KeyRangeFactoryProvider._clas s(), _KeyRangeFactoryProvider._translateKey(bound), open); 20 return _KeyRangeFactoryProvider._lowerBound(_KeyRangeFactoryProvider._clas s(), _KeyRangeFactoryProvider._translateKey(bound), open);
21 } 21 }
(...skipping 1096 matching lines...) Expand 10 before | Expand all | Expand 10 after
1118 exports.Database = Database; 1118 exports.Database = Database;
1119 exports.IdbFactory = IdbFactory; 1119 exports.IdbFactory = IdbFactory;
1120 exports.Index = Index; 1120 exports.Index = Index;
1121 exports.KeyRange = KeyRange; 1121 exports.KeyRange = KeyRange;
1122 exports.ObjectStore = ObjectStore; 1122 exports.ObjectStore = ObjectStore;
1123 exports.Request = Request; 1123 exports.Request = Request;
1124 exports.OpenDBRequest = OpenDBRequest; 1124 exports.OpenDBRequest = OpenDBRequest;
1125 exports.Transaction = Transaction; 1125 exports.Transaction = Transaction;
1126 exports.VersionChangeEvent = VersionChangeEvent; 1126 exports.VersionChangeEvent = VersionChangeEvent;
1127 }); 1127 });
OLDNEW
« no previous file with comments | « lib/runtime/dart/html_common.js ('k') | lib/runtime/dart/svg.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698