| Index: lib/runtime/dart/web_sql.js
|
| diff --git a/lib/runtime/dart/web_sql.js b/lib/runtime/dart/web_sql.js
|
| index 4e996f1384a3392983d758f03922e485c8c627aa..a0afbd6e49504266ac28ae273d39601d0ab205f8 100644
|
| --- a/lib/runtime/dart/web_sql.js
|
| +++ b/lib/runtime/dart/web_sql.js
|
| @@ -1,14 +1,14 @@
|
| dart_library.library('dart/web_sql', null, /* Imports */[
|
| 'dart/_runtime',
|
| - 'dart/_interceptors',
|
| 'dart/core',
|
| + 'dart/_interceptors',
|
| 'dart/html',
|
| 'dart/_metadata',
|
| 'dart/_js_helper',
|
| - 'dart/collection',
|
| - 'dart/html_common'
|
| + 'dart/html_common',
|
| + 'dart/collection'
|
| ], /* Lazy imports */[
|
| -], function(exports, dart, _interceptors, core, html, _metadata, _js_helper, collection, html_common) {
|
| +], function(exports, dart, core, _interceptors, html, _metadata, _js_helper, html_common, collection) {
|
| 'use strict';
|
| let dartx = dart.dartx;
|
| const SqlStatementCallback = dart.typedef('SqlStatementCallback', () => dart.functionType(dart.void, [SqlTransaction, SqlResultSet]));
|
|
|