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

Side by Side Diff: lib/runtime/dart/web_sql.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/web_gl.js ('k') | lib/src/closure/closure_type.dart » ('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/web_sql', null, /* Imports */[ 1 dart_library.library('dart/web_sql', null, /* Imports */[
2 'dart/_runtime', 2 'dart/_runtime',
3 'dart/core',
3 'dart/_interceptors', 4 'dart/_interceptors',
4 'dart/core',
5 'dart/html', 5 'dart/html',
6 'dart/_metadata', 6 'dart/_metadata',
7 'dart/_js_helper', 7 'dart/_js_helper',
8 'dart/collection', 8 'dart/html_common',
9 'dart/html_common' 9 'dart/collection'
10 ], /* Lazy imports */[ 10 ], /* Lazy imports */[
11 ], function(exports, dart, _interceptors, core, html, _metadata, _js_helper, col lection, html_common) { 11 ], function(exports, dart, core, _interceptors, html, _metadata, _js_helper, htm l_common, collection) {
12 'use strict'; 12 'use strict';
13 let dartx = dart.dartx; 13 let dartx = dart.dartx;
14 const SqlStatementCallback = dart.typedef('SqlStatementCallback', () => dart.f unctionType(dart.void, [SqlTransaction, SqlResultSet])); 14 const SqlStatementCallback = dart.typedef('SqlStatementCallback', () => dart.f unctionType(dart.void, [SqlTransaction, SqlResultSet]));
15 const SqlStatementErrorCallback = dart.typedef('SqlStatementErrorCallback', () => dart.functionType(dart.void, [SqlTransaction, SqlError])); 15 const SqlStatementErrorCallback = dart.typedef('SqlStatementErrorCallback', () => dart.functionType(dart.void, [SqlTransaction, SqlError]));
16 const SqlTransactionCallback = dart.typedef('SqlTransactionCallback', () => da rt.functionType(dart.void, [SqlTransaction])); 16 const SqlTransactionCallback = dart.typedef('SqlTransactionCallback', () => da rt.functionType(dart.void, [SqlTransaction]));
17 const SqlTransactionErrorCallback = dart.typedef('SqlTransactionErrorCallback' , () => dart.functionType(dart.void, [SqlError])); 17 const SqlTransactionErrorCallback = dart.typedef('SqlTransactionErrorCallback' , () => dart.functionType(dart.void, [SqlError]));
18 dart.defineExtensionNames([ 18 dart.defineExtensionNames([
19 'changeVersion', 19 'changeVersion',
20 'readTransaction', 20 'readTransaction',
21 'transaction', 21 'transaction',
(...skipping 176 matching lines...) Expand 10 before | Expand all | Expand 10 after
198 exports.SqlStatementCallback = SqlStatementCallback; 198 exports.SqlStatementCallback = SqlStatementCallback;
199 exports.SqlStatementErrorCallback = SqlStatementErrorCallback; 199 exports.SqlStatementErrorCallback = SqlStatementErrorCallback;
200 exports.SqlTransactionCallback = SqlTransactionCallback; 200 exports.SqlTransactionCallback = SqlTransactionCallback;
201 exports.SqlTransactionErrorCallback = SqlTransactionErrorCallback; 201 exports.SqlTransactionErrorCallback = SqlTransactionErrorCallback;
202 exports.SqlDatabase = SqlDatabase; 202 exports.SqlDatabase = SqlDatabase;
203 exports.SqlError = SqlError; 203 exports.SqlError = SqlError;
204 exports.SqlResultSet = SqlResultSet; 204 exports.SqlResultSet = SqlResultSet;
205 exports.SqlResultSetRowList = SqlResultSetRowList; 205 exports.SqlResultSetRowList = SqlResultSetRowList;
206 exports.SqlTransaction = SqlTransaction; 206 exports.SqlTransaction = SqlTransaction;
207 }); 207 });
OLDNEW
« no previous file with comments | « lib/runtime/dart/web_gl.js ('k') | lib/src/closure/closure_type.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698