-
Notifications
You must be signed in to change notification settings - Fork 47
Upgrade to Dart 2.6 #7
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
@@ -58,33 +59,13 @@ class CONSOLE_SCREEN_BUFFER_INFO extends Struct<CONSOLE_SCREEN_BUFFER_INFO> { | |||
int dwMaximumWindowSizeX; | |||
@Int16() | |||
int dwMaximumWindowSizeY; | |||
|
|||
factory CONSOLE_SCREEN_BUFFER_INFO.allocate( |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Did you delete the factory on purpose?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It didn't look like they were being used, and I was trying to be consistent with the previous changes in https://github.com/timsneath/dart_console/compare/new-ffi-model?expand=1. @timsneath ?
@@ -28,14 +29,6 @@ class WinSize extends Struct<WinSize> { | |||
|
|||
@Int16() | |||
int ws_ypixel; | |||
|
|||
factory WinSize.allocate( |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
idem
Upgrade a few things that were not working in the
new-ffi-model
branch with2.6.0-dev.8.2
cc @dcharkes can you please review?