Skip to content

Commit

Permalink
Fixes dart-lang#2852. Fix the new roll failures
Browse files Browse the repository at this point in the history
  • Loading branch information
sgrekhov committed Sep 10, 2024
1 parent e4193ef commit ce309cf
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 3 deletions.
2 changes: 0 additions & 2 deletions LanguageFeatures/Parts-with-imports/scope_A03_t01_part2.dart
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,6 @@ part of 'scope_A03_t01_part1.dart';
import 'scope_lib1.dart' as l3;
import 'scope_lib2.dart' as l4;

part 'scope_A03_t01_part2.dart';

testPart2() {
// From scope_lib1.dart
Expect.equals("scope_lib1 libVar", l1.libVar);
Expand Down
3 changes: 3 additions & 0 deletions LanguageFeatures/Parts-with-imports/scope_A03_t02_part1.dart
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,9 @@
part of 'scope_A03_t02.dart';

import 'scope_lib1.dart' deferred as d;
// ^
// [analyzer] unspecified
// [cfe] unspecified
import 'scope_lib2.dart' deferred as d;
// ^
// [analyzer] unspecified
Expand Down
3 changes: 3 additions & 0 deletions LanguageFeatures/Parts-with-imports/scope_A03_t02_part2.dart
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,9 @@
part of 'scope_A03_t02_part1.dart';

import 'scope_lib1.dart' deferred as d;
// ^
// [analyzer] unspecified
// [cfe] unspecified
import 'scope_lib2.dart' deferred as d;
// ^
// [analyzer] unspecified
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ part of 'scope_A03_t03.dart';

import 'scope_lib1.dart' deferred as d;

part 'scope_A03_t03_part2.dart'
part 'scope_A03_t03_part2.dart';

testPart1() async {
await d.loadLibrary();
Expand Down

0 comments on commit ce309cf

Please sign in to comment.