Skip to content

Commit

Permalink
dart-lang#2559. Add merge order tests
Browse files Browse the repository at this point in the history
  • Loading branch information
sgrekhov committed Mar 12, 2024
1 parent 5c18c22 commit 17f98ac
Show file tree
Hide file tree
Showing 8 changed files with 174 additions and 0 deletions.
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 {}

0 comments on commit 17f98ac

Please sign in to comment.