forked from dart-lang/co19
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
dart-lang#2559. Add augmenting itself tests
- Loading branch information
Showing
3 changed files
with
72 additions
and
0 deletions.
There are no files selected for viewing
25 changes: 25 additions & 0 deletions
25
LanguageFeatures/Augmentation-libraries/defining_augmentation_A05_t01.dart
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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() { | ||
} |
25 changes: 25 additions & 0 deletions
25
LanguageFeatures/Augmentation-libraries/defining_augmentation_A05_t02.dart
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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() { | ||
} |
22 changes: 22 additions & 0 deletions
22
LanguageFeatures/Augmentation-libraries/defining_augmentation_A05_t02_lib.dart
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |