mirror of
https://github.com/flutter/flutter
synced 2024-10-28 19:21:57 +00:00
[tools] Fix --template=plugin_ffi
formatting (#146269)
It looks like the formatter was updated. We have a test running on the FFIgen repo that checks that rerunning the generated bindings with FFIgen generates identical bindings. Closes: * https://github.com/dart-lang/native/issues/1072
This commit is contained in:
parent
508641ca7a
commit
ac5be2d821
1 changed files with 1 additions and 2 deletions
|
@ -43,8 +43,7 @@ class {{pluginDartClass}}Bindings {
|
|||
}
|
||||
|
||||
late final _sumPtr =
|
||||
_lookup<ffi.NativeFunction<ffi.Int Function(ffi.Int, ffi.Int)>>(
|
||||
'sum');
|
||||
_lookup<ffi.NativeFunction<ffi.Int Function(ffi.Int, ffi.Int)>>('sum');
|
||||
late final _sum = _sumPtr.asFunction<int Function(int, int)>();
|
||||
|
||||
/// A longer lived native function, which occupies the thread calling it.
|
||||
|
|
Loading…
Reference in a new issue