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 merge order tests #2566

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
24 changes: 24 additions & 0 deletions LanguageFeatures/Augmentation-libraries/merge_order_A01_t01.dart
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
// 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 The merge order is defined as a depth-first pre-order traversal
/// of the import augment directives starting at the main library.
///
/// @description Checks the merge order of augment libraries
/// @author sgrekhov22@gmail.com

// SharedOptions=--enable-experiment=macros

import '../../Utils/expect.dart';
import augment 'merge_order_A01_t01_lib1.dart';
import augment 'merge_order_A01_t01_lib3.dart';

class A {}

main() {
Expect.equals("Augmented A", A().foo());
Expect.equals("Augmented B", B().foo());
Expect.equals("Augmented C", C().foo());
Expect.equals("Augmented D", D().foo());
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
// 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 The merge order is defined as a depth-first pre-order traversal
/// of the import augment directives starting at the main library.
///
/// @description Checks the merge order of augment libraries
/// @author sgrekhov22@gmail.com

// SharedOptions=--enable-experiment=macros

library augment 'merge_order_A01_t01.dart';

import augment 'merge_order_A01_t01_lib2.dart';

augment class A {
String foo() => "Augmented A";
}
class B {}
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
// 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 The merge order is defined as a depth-first pre-order traversal
/// of the import augment directives starting at the main library.
///
/// @description Checks the merge order of augment libraries
/// @author sgrekhov22@gmail.com

// SharedOptions=--enable-experiment=macros

library augment 'merge_order_A01_t01_lib1.dart';

augment class B {
String foo() => "Augmented B";
}
class C {}
class D {}
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
// 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 The merge order is defined as a depth-first pre-order traversal
/// of the import augment directives starting at the main library.
///
/// @description Checks the merge order of augment libraries
/// @author sgrekhov22@gmail.com

// SharedOptions=--enable-experiment=macros

library augment 'merge_order_A01_t01.dart';

augment class C {
String foo() => "Augmented C";
}

augment class D {
String foo() => "Augmented D";
}
27 changes: 27 additions & 0 deletions LanguageFeatures/Augmentation-libraries/merge_order_A01_t02.dart
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
// 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 The merge order is defined as a depth-first pre-order traversal
/// of the import augment directives starting at the main library.
///
/// @description Checks that it is a compile-time error if an augmenting
/// declaration appears in a library before the library where the original
/// declaration occurs, according to merge order
/// @author sgrekhov22@gmail.com

// SharedOptions=--enable-experiment=macros

import augment 'merge_order_A01_t02_lib1.dart';
import augment 'merge_order_A01_t02_lib3.dart';

augment class A {}
// ^
// [analyzer] unspecified
// [cfe] unspecified

main() {
print(A);
print(B);
print(C);
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
// 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 The merge order is defined as a depth-first pre-order traversal
/// of the import augment directives starting at the main library.
///
/// @description Checks that it is a compile-time error if an augmenting
/// declaration appears in a library before the library where the original
/// declaration occurs, according to merge order
/// @author sgrekhov22@gmail.com

// SharedOptions=--enable-experiment=macros

library augment 'merge_order_A01_t02.dart';

import augment 'merge_order_A01_t02_lib2.dart';

class A {
}
augment class B {}
// ^
// [analyzer] unspecified
// [cfe] unspecified
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 The merge order is defined as a depth-first pre-order traversal
/// of the import augment directives starting at the main library.
///
/// @description Checks that it is a compile-time error if an augmenting
/// declaration appears in a library before the library where the original
/// declaration occurs, according to merge order
/// @author sgrekhov22@gmail.com

// SharedOptions=--enable-experiment=macros

library augment 'merge_order_A01_t02_lib1.dart';

class B {}

augment class C {}
// ^
// [analyzer] unspecified
// [cfe] unspecified
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
// 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 The merge order is defined as a depth-first pre-order traversal
/// of the import augment directives starting at the main library.
///
/// @description Checks that it is a compile-time error if an augmenting
/// declaration appears in a library before the library where the original
/// declaration occurs, according to merge order
/// @author sgrekhov22@gmail.com

// SharedOptions=--enable-experiment=macros

library augment 'merge_order_A01_t02.dart';

class C {}
Loading