blob: a4ba0998187a5c9fdc5963fce87a99928d87aadd [file] [log] [blame]
// Copyright (c) 2024, 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 It is a compile-time error if:
/// - The signature of the function augmentation does not exactly match the
/// original function. This means the return types must be the same; there
/// must be the same number of positional, optional, and named parameters; the
/// types of corresponding positional and optional parameters must be the
/// same; the names and types of named parameters must be the same; any type
/// parameters and bounds must be the same; and any required or covariant
/// modifiers must match.
///
/// @description Checks that it is a compile-time error if number of optional
/// parameters of an augmentation doesn't exactly match the original function
/// @author sgrekhov22@gmail.com
/// @issue 55478
// SharedOptions=--enable-experiment=macros
augment library 'augmenting_functions_A04_t04.dart';
augment void topLevelFunction({int i}) {}
// ^^^^^^^^^^^^^^^^
// [analyzer] unspecified
// [cfe] unspecified
augment class C {
augment static void staticMethod({int i}) {}
// ^^^^^^^^^^^^
// [analyzer] unspecified
// [cfe] unspecified
augment void instanceMethod({int i}) {}
// ^^^^^^^^^^^^^^
// [analyzer] unspecified
// [cfe] unspecified
}
augment mixin M {
augment static void staticMethod({int i}) {}
// ^^^^^^^^^^^^
// [analyzer] unspecified
// [cfe] unspecified
augment void instanceMethod({int i}) {}
// ^^^^^^^^^^^^^^
// [analyzer] unspecified
// [cfe] unspecified
}
augment enum E {
augment e1;
augment static void staticMethod({int i}) {}
// ^^^^^^^^^^^^
// [analyzer] unspecified
// [cfe] unspecified
augment void instanceMethod({int i}) {}
// ^^^^^^^^^^^^^^
// [analyzer] unspecified
// [cfe] unspecified
}
augment extension Ext {
augment static void staticMethod({int i}) {}
// ^^^^^^^^^^^^
// [analyzer] unspecified
// [cfe] unspecified
augment void instanceMethod({int i}) {}
// ^^^^^^^^^^^^^^
// [analyzer] unspecified
// [cfe] unspecified
}