476b1e02a9
Also, updated status files to correctly fix failures in FF, IE and removed other spurious status entries. R=alanknight@google.com,vsm@google.com Change-Id: Ic965103d892ff4d5d119712e3187e829f57cd022 Reviewed-on: https://dart-review.googlesource.com/31800 Reviewed-by: Terry Lucas <terry@google.com>
26 lines
734 B
Plaintext
26 lines
734 B
Plaintext
// Copyright (c) 2012, 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.
|
|
|
|
part of $LIBRARYNAME;
|
|
|
|
@DocsEditable()
|
|
$(ANNOTATIONS)$(NATIVESPEC)$(CLASS_MODIFIERS)class $CLASSNAME$EXTENDS$IMPLEMENTS {
|
|
$!MEMBERS
|
|
|
|
@JSName('transaction')
|
|
@DomName('Database.transaction')
|
|
@DocsEditable()
|
|
Future<SqlTransaction> transaction_future() {
|
|
var completer = new Completer<SqlTransaction>();
|
|
transaction((value) {
|
|
applyExtension('SQLTransaction', value);
|
|
completer.complete(value);
|
|
}, (error) {
|
|
completer.completeError(error);
|
|
});
|
|
return completer.future;
|
|
}
|
|
|
|
}
|