File tree 6 files changed +32
-2
lines changed
6 files changed +32
-2
lines changed Original file line number Diff line number Diff line change
1
+ // Copyright (c) 2020, the Dart project authors. Please see the AUTHORS file
2
+ // for details. All rights reserved. Use of this source code is governed by a
3
+ // BSD-style license that can be found in the LICENSE file.
4
+
5
+ // @dart = 2.6
6
+
7
+ // All imports must be in all FFI patch files to not depend on the order
8
+ // the patches are applied.
9
+ import "dart:_internal" show patch;
10
+ import 'dart:typed_data' ;
11
+ import 'dart:isolate' ;
12
+
13
+ @pragma ("vm:entry-point" )
14
+ abstract class Struct extends NativeType {}
Original file line number Diff line number Diff line change 87
87
"patches" : [
88
88
" _internal/vm/lib/ffi_patch.dart" ,
89
89
" _internal/vm/lib/ffi_dynamic_library_patch.dart" ,
90
- " _internal/vm/lib/ffi_native_type_patch.dart"
90
+ " _internal/vm/lib/ffi_native_type_patch.dart" ,
91
+ " _internal/vm/lib/ffi_struct_patch.dart"
91
92
]
92
93
},
93
94
"wasm" : {
Original file line number Diff line number Diff line change 93
93
- " _internal/vm/lib/ffi_patch.dart"
94
94
- " _internal/vm/lib/ffi_dynamic_library_patch.dart"
95
95
- " _internal/vm/lib/ffi_native_type_patch.dart"
96
+ - " _internal/vm/lib/ffi_struct_patch.dart"
96
97
97
98
wasm :
98
99
uri : " wasm/wasm.dart"
Original file line number Diff line number Diff line change
1
+ // Copyright (c) 2020, the Dart project authors. Please see the AUTHORS file
2
+ // for details. All rights reserved. Use of this source code is governed by a
3
+ // BSD-style license that can be found in the LICENSE file.
4
+
5
+ // All imports must be in all FFI patch files to not depend on the order
6
+ // the patches are applied.
7
+ import "dart:_internal" show patch;
8
+ import 'dart:typed_data' ;
9
+ import 'dart:isolate' ;
10
+
11
+ @pragma ("vm:entry-point" )
12
+ abstract class Struct extends NativeType {}
Original file line number Diff line number Diff line change 87
87
"patches" : [
88
88
" _internal/vm/lib/ffi_patch.dart" ,
89
89
" _internal/vm/lib/ffi_dynamic_library_patch.dart" ,
90
- " _internal/vm/lib/ffi_native_type_patch.dart"
90
+ " _internal/vm/lib/ffi_native_type_patch.dart" ,
91
+ " _internal/vm/lib/ffi_struct_patch.dart"
91
92
]
92
93
},
93
94
"wasm" : {
Original file line number Diff line number Diff line change 93
93
- " _internal/vm/lib/ffi_patch.dart"
94
94
- " _internal/vm/lib/ffi_dynamic_library_patch.dart"
95
95
- " _internal/vm/lib/ffi_native_type_patch.dart"
96
+ - " _internal/vm/lib/ffi_struct_patch.dart"
96
97
97
98
wasm :
98
99
uri : " wasm/wasm.dart"
You can’t perform that action at this time.
0 commit comments