-
Notifications
You must be signed in to change notification settings - Fork 121
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix regression in splitting type annotations with library prefixes. (#…
…1250) * Fix regression in splitting type annotations with library prefixes. Fix #1249. * Require Dart 3.0. * Stop testing on 2.19 and move to 3.0.
- Loading branch information
1 parent
0903be1
commit 4c58ddf
Showing
6 changed files
with
25 additions
and
14 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
>>> | ||
class C { | ||
late final _callocPtr = _lookup< | ||
ffi | ||
.NativeFunction<ffi_Pointer_ffi_Void_ Function(ffi_Size__ffi_Size)>>( | ||
'calloc'); | ||
} | ||
<<< | ||
class C { | ||
late final _callocPtr = _lookup< | ||
ffi.NativeFunction< | ||
ffi_Pointer_ffi_Void_ Function(ffi_Size__ffi_Size)>>('calloc'); | ||
} |