blob: 0907438cfc5169dfd34df159894390afda865fc1 [file] [log] [blame]
/*
* Copyright (c) 2011, 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.
*/
/**
* @assertion abstract Future then(onValue(T value), {onError(Object asyncError)})
* When this future completes with a value, then onValue is called with this value.
* If this future is already completed then the invocation of onValue is delayed until
* the next event-loop iteration.
* Returns a new Future f which is completed with the result of invoking onValue
* (if this completes with a value) or onError (if this completes with an error).
* @description Checks that different onValue functions don't
* conflict with each other.
* @author msyabro
* @reviewer kaigorodov
*/
import "dart:async";
import "../../../Utils/async_utils.dart";
import "../../../Utils/expect.dart";
main() {
Completer completer = new Completer();
Future f = completer.future;
asyncStart();
f.then((fValue) {
Expect.equals(0, fValue);
asyncEnd();
});
asyncStart();
f.then((fValue) {
Expect.equals(0, fValue);
asyncEnd();
});
asyncStart();
f.then((fValue) {
Expect.equals(0, fValue);
asyncEnd();
});
completer.complete(0);
}