Files
sdk/pkg/front_end/test/extensions/data/reexport/lib1.dart
T
Lasse R.H. Nielsen 726904ac17 Add onError extension method to Future.
Provides better typing than `catchError`.

Change-Id: If0d4487b7c3a499160fb719740a1d65c0545024d
Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/151512
Commit-Queue: Lasse R.H. Nielsen <lrn@google.com>
Reviewed-by: Lasse R.H. Nielsen <lrn@google.com>
Reviewed-by: Nate Bosch <nbosch@google.com>
2021-01-21 23:13:56 +00:00

42 lines
1.1 KiB
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.
// @dart = 2.9
/*library: scope=[
ClashingExtension,
UniqueExtension1,
async.dart.FutureExtensions]*/
/*class: ClashingExtension:
builder-name=ClashingExtension,
builder-onType=String,
extension-members=[static staticMethod=ClashingExtension|staticMethod],
extension-name=ClashingExtension,
extension-onType=String
*/
extension ClashingExtension on String {
/*member: ClashingExtension|staticMethod:
builder-name=staticMethod,
member-name=ClashingExtension|staticMethod
*/
static staticMethod() {}
}
/*class: UniqueExtension1:
builder-name=UniqueExtension1,
builder-onType=String,
extension-members=[static staticMethod=UniqueExtension1|staticMethod],
extension-name=UniqueExtension1,
extension-onType=String
*/
extension UniqueExtension1 on String {
/*member: UniqueExtension1|staticMethod:
builder-name=staticMethod,
member-name=UniqueExtension1|staticMethod
*/
static staticMethod() {}
}