Chris Bracken
Chris Bracken
This would uninstall the specified version with the following behaviour: 1. abort if any aliases exist 2. abort if it's the current `use` version 3. abort if it's the default...
Today, `dvm help` only ever displays the top-level usage, never anything command or sub-command specific: ``` % dvm help alias create usage: dvm [] ... ``` `dvm` does actually have...
**Note: this is WIP. Pushing so I don't forget to pick this up on Monday.** When setting `FlutterProjectArgs.command_line_argv` prior to launching the engine, we were previously setting a placeholder value...
As [reported by @_mono on Twitter]( https://twitter.com/_mono/status/1023733699614060545), the Flutter text selection highlight rect should be computed at the line level as opposed to per glyph. To see this effect, paste...
When looking up git commits, find_commit.dart uses a `git log` invocation here: https://github.com/flutter/flutter/blob/a2233eabed2283c473dfe5c05a21fd555428541e/dev/tools/bin/find_commit.dart#L68-L75 This is called from here: https://github.com/flutter/flutter/blob/a2233eabed2283c473dfe5c05a21fd555428541e/dev/tools/bin/find_commit.dart#L99-L105 Since we hardcode `master` as both the primary and secondary repo...
Once we've completed support for PlatformViews on macOS we'll need a page similar to https://docs.flutter.dev/platform-integration/ios/platform-views covering the creation of platform views on macOS. For the most part, the framework code...
Previously, the Dart SDK had no support for building standalone executables. The two options were: * Running from source * Running from a binary snapshot tied to a particular VM...
This would require a lot of the same conditional work we do for macOS/Linux and the addition of batch scripts for Windows.
Prior to Dart 2.18, package metadata collected by `pub` was emitted in a package spec (`.packages` file). This contained a mapping of package name to resolved URL (typically a `file`...
Create an auto-roller that periodically checks for a new Dart SDK version, sends a PR to upgrade the linux and macos versions, and lands it if all tests pass.