| // DO NOT EDIT - unless you are editing documentation as per: |
| // https://code.google.com/p/dart/wiki/ContributingHTMLDocumentation |
| // Auto-generated dart:web_sql library. |
| |
| /// An API for storing data in the browser that can be queried with SQL. |
| /// |
| /// **Caution:** this specification is no longer actively maintained by the Web |
| /// Applications Working Group and may be removed at any time. |
| /// See [the W3C Web SQL Database specification](http://www.w3.org/TR/webdatabase/) |
| /// for more information. |
| /// |
| /// The [dart:indexed_db] APIs is a recommended alternatives. |
| /// |
| /// {@category Web (Legacy)} |
| /// {@nodoc} |
| @deprecated |
| library dart.dom.web_sql; |
| |
| import 'dart:async'; |
| import 'dart:collection' hide LinkedList, LinkedListEntry; |
| import 'dart:_internal' show FixedLengthListMixin; |
| import 'dart:html'; |
| import 'dart:html_common'; |
| import 'dart:_js_helper' show applyExtension, convertDartClosureToJS, Creates, |
| JSName, Native, JavaScriptIndexingBehavior, Returns; |
| import 'dart:_foreign_helper' show JS; |
| import 'dart:_interceptors' show JavaScriptObject; |
| |
| $!GENERATED_DART_FILES |