os_detect icon indicating copy to clipboard operation
os_detect copied to clipboard

Improve tree-shaking:

Open mraleph opened this issue 1 year ago • 0 comments
trafficstars

  • Use dart2js:prefer-inline everywhere where we use vm:prefer-inline.
  • Make platformOS const/platform-const by wrapping version into a thunk. This means you don't have to lazy initialize the final field.
  • Allow full constant folding of OperatingSystem.current if overrideOperatingSystem is never called in the program by going through an indirection. Without this indirection a bunch of goo stays behind after each invocation of OperatingSystem.current in the program

mraleph avatar Jun 12 '24 07:06 mraleph