[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:
Daco Harkes 2024-04-11 12:24:09 +02:00 committed by GitHub
parent 508641ca7a
commit ac5be2d821
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -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.