7d648e3ae7
This can only be landed when `Allocator` and `Opaque` have rolled into Flutter/engine, that into Flutter/flutter, and that into g3. flutter/flutter/commit/a706cd211240f27be3b61f06d70f958c7a4156fe Deletes all the copies of `_CallocAllocator` and uses the one from `package:ffi` instead. Issue: https://github.com/dart-lang/sdk/issues/44622 Issue: https://github.com/dart-lang/sdk/issues/43974 Issue: https://github.com/dart-lang/sdk/issues/44621 Issue: https://github.com/dart-lang/sdk/issues/38721 Change-Id: I50b3b4c31a2b839b35e3e057bd54f463b90bc55e Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/179540 Reviewed-by: Aske Simon Christensen <askesc@google.com>
11 lines
328 B
Dart
11 lines
328 B
Dart
// Copyright (c) 2019, the Dart project authors. Please see the AUTHORS file
|
|
// for details. All rights reserved. Use of this source code is governed by a
|
|
// BSD-style license that can be found in the LICENSE file.
|
|
|
|
/// A synchronous SQLite wrapper.
|
|
///
|
|
/// Written using dart:ffi.
|
|
library sqlite;
|
|
|
|
export "src/database.dart";
|