os_detect
os_detect copied to clipboard
Improve tree-shaking:
trafficstars
- Use
dart2js:prefer-inlineeverywhere where we usevm:prefer-inline. - Make
platformOSconst/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.currentifoverrideOperatingSystemis never called in the program by going through an indirection. Without this indirection a bunch of goo stays behind after each invocation ofOperatingSystem.currentin the program