Skip to content
This repository was archived by the owner on Feb 25, 2025. It is now read-only.

Commit 6245525

Browse files
author
Dart CI
committed
Version 2.18.0-187.0.dev
Merge commit 'ba4b3d20d258bd2bd88aa98d1bd3321fb94d27c7' into 'dev'
2 parents 57554a8 + ba4b3d2 commit 6245525

File tree

8 files changed

+13
-10
lines changed

8 files changed

+13
-10
lines changed

pkg/front_end/lib/src/fasta/kernel/utils.dart

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@
22
// for details. All rights reserved. Use of this source code is governed by a
33
// BSD-style license that can be found in the LICENSE file.
44

5-
import 'dart:io' show BytesBuilder, File, IOSink;
5+
import 'dart:io' show File, IOSink;
66

7-
import 'dart:typed_data' show Uint8List;
7+
import 'dart:typed_data' show BytesBuilder, Uint8List;
88

99
import 'package:_fe_analyzer_shared/src/parser/formal_parameter_kind.dart';
1010
import 'package:_fe_analyzer_shared/src/scanner/scanner.dart' show Token;

pkg/front_end/lib/src/fasta/util/bytes_sink.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
// for details. All rights reserved. Use of this source code is governed by a
33
// BSD-style license that can be found in the LICENSE file.
44

5-
import 'dart:io' show BytesBuilder;
5+
import 'dart:typed_data' show BytesBuilder;
66

77
// TODO(ahe): https://github.com/dart-lang/sdk/issues/28316
88
class BytesSink implements Sink<List<int>> {

pkg/front_end/test/crashing_test_case_minimizer_impl.dart

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,11 +6,11 @@ import 'dart:async' show Future, StreamSubscription;
66

77
import 'dart:convert' show JsonEncoder, jsonDecode, utf8;
88

9-
import 'dart:io' show BytesBuilder, File, stdin, stdout;
9+
import 'dart:io' show File, stdin, stdout;
1010

1111
import 'dart:math' show max;
1212

13-
import 'dart:typed_data' show Uint8List;
13+
import 'dart:typed_data' show BytesBuilder, Uint8List;
1414

1515
import 'package:_fe_analyzer_shared/src/util/relativize.dart'
1616
show relativizeUri, isWindows;

pkg/frontend_server/lib/frontend_server.dart

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,8 @@ library frontend_server;
77

88
import 'dart:async';
99
import 'dart:convert';
10-
import 'dart:io' hide FileSystemEntity;
10+
import 'dart:io' show Directory, File, IOSink, stdin, stdout;
11+
import 'dart:typed_data' show BytesBuilder;
1112

1213
import 'package:args/args.dart';
1314
import 'package:dev_compiler/dev_compiler.dart'

pkg/kernel/test/binary/utils.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
// for details. All rights reserved. Use of this source code is governed by a
33
// BSD-style license that can be found in the LICENSE file.
44

5-
import 'dart:io' show BytesBuilder;
5+
import 'dart:typed_data' show BytesBuilder;
66

77
import 'package:kernel/binary/ast_to_binary.dart' show BinaryPrinter;
88
import 'package:kernel/kernel.dart';

pkg/kernel/test/metadata_test.dart

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,8 @@
33
// BSD-style license that can be found in the LICENSE file.
44

55
import 'dart:convert';
6-
import 'dart:io';
6+
import 'dart:io' show File;
7+
import 'dart:typed_data' show BytesBuilder;
78

89
import 'package:kernel/ast.dart';
910
import 'package:kernel/binary/ast_from_binary.dart';

pkg/test_runner/lib/src/testing_servers.dart

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,8 @@
44

55
import 'dart:async';
66
import 'dart:convert' show HtmlEscape;
7-
import 'dart:io';
7+
import 'dart:io' hide BytesBuilder;
8+
import 'dart:typed_data' show BytesBuilder;
89

910
import 'package:package_config/package_config.dart';
1011
import 'package:test_runner/src/configuration.dart';

tools/VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,5 +27,5 @@ CHANNEL dev
2727
MAJOR 2
2828
MINOR 18
2929
PATCH 0
30-
PRERELEASE 186
30+
PRERELEASE 187
3131
PRERELEASE_PATCH 0

0 commit comments

Comments
 (0)