Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

#2559. Add augmenting itself tests #2567

Merged
merged 1 commit into from
Mar 16, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
// 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 a library tries to augment itself
///
/// @description Checks that it is a compile-time error if a library tries to
/// augment itself
/// @author sgrekhov22@gmail.com
/// @issue 55168, 55169

// SharedOptions=--enable-experiment=macros

library augment 'defining_augmentation_A05_t01.dart';
// ^
// [analyzer] unspecified
// [cfe] unspecified

import augment 'defining_augmentation_A05_t01.dart';
// ^
// [analyzer] unspecified
// [cfe] unspecified

main() {
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
// 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 a library tries to augment itself
///
/// @description Checks that it is a compile-time error if a library tries to
/// augment itself. Test cycling dependency
/// @author sgrekhov22@gmail.com
/// @issue 55168, 55169

// SharedOptions=--enable-experiment=macros

library augment 'defining_augmentation_A05_t02_lib.dart';
// ^
// [analyzer] unspecified
// [cfe] unspecified

import augment 'defining_augmentation_A05_t02_lib.dart';
// ^
// [analyzer] unspecified
// [cfe] unspecified

main() {
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
// 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 a library tries to augment itself
///
/// @description Checks that it is a compile-time error if a library tries to
/// augment itself. Test cycling dependency
/// @author sgrekhov22@gmail.com
/// @issue 55168, 55169

// SharedOptions=--enable-experiment=macros

library augment 'defining_augmentation_A05_t02.dart';
// ^
// [analyzer] unspecified
// [cfe] unspecified

import augment 'defining_augmentation_A05_t02.dart';
// ^
// [analyzer] unspecified
// [cfe] unspecified
Loading