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

Commit b4751d5

Browse files
dcharkescommit-bot@chromium.org
authored andcommitted
[vm/ffi] Pointer.asExternalTypedData to extension method - Fix Flutter
Fixes imports (the order of patch files is not defined, so the imports need to be equal in all files). Change-Id: I2dc16f4930253b25c7ae6ab6b0699581f9e2dd46 Cq-Include-Trybots: luci.dart.try:flutter-engine-linux-try Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/121428 Commit-Queue: Daco Harkes <dacoharkes@google.com> Auto-Submit: Daco Harkes <dacoharkes@google.com> Reviewed-by: Martin Kustermann <kustermann@google.com>
1 parent 91c6dc1 commit b4751d5

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

sdk/lib/_internal/vm/lib/ffi_dynamic_library_patch.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
// All imports must be in all FFI patch files to not depend on the order
66
// the patches are applied.
77
import "dart:_internal" show patch;
8-
import 'dart:typed_data' show TypedData;
8+
import 'dart:typed_data';
99

1010
DynamicLibrary _open(String name) native "Ffi_dl_open";
1111
DynamicLibrary _processLibrary() native "Ffi_dl_processLibrary";

sdk/lib/_internal/vm/lib/ffi_native_type_patch.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
// All imports must be in all FFI patch files to not depend on the order
66
// the patches are applied.
77
import "dart:_internal" show patch;
8-
import 'dart:typed_data' show TypedData;
8+
import 'dart:typed_data';
99

1010
// NativeType is not private, because it is used in type arguments.
1111
// NativeType is abstract because it not used with const constructors in

sdk_nnbd/lib/_internal/vm/lib/ffi_dynamic_library_patch.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
// All imports must be in all FFI patch files to not depend on the order
88
// the patches are applied.
99
import "dart:_internal" show patch;
10-
import 'dart:typed_data' show TypedData;
10+
import 'dart:typed_data';
1111

1212
DynamicLibrary _open(String name) native "Ffi_dl_open";
1313
DynamicLibrary _processLibrary() native "Ffi_dl_processLibrary";

sdk_nnbd/lib/_internal/vm/lib/ffi_native_type_patch.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
// All imports must be in all FFI patch files to not depend on the order
88
// the patches are applied.
99
import "dart:_internal" show patch;
10-
import 'dart:typed_data' show TypedData;
10+
import 'dart:typed_data';
1111

1212
// NativeType is not private, because it is used in type arguments.
1313
// NativeType is abstract because it not used with const constructors in

0 commit comments

Comments
 (0)