Highlights
- Arctic Code Vault Contributor
Create your own GitHub profile
Sign up for your own profile on GitHub, the best place to host code, manage projects, and build software alongside 50 million developers.
Sign up
Pinned
1,951 contributions in the last year
Activity overview
Contribution activity
October 2020
Created a pull request in dart-lang/async that received 4 comments
Allow 2.12.0 dev SDK versions
Drop dependency overrides and update deps to -nullsafety versions.
- Avoid extra list for single character strings
- Migrate to null safety
- Remove a fixed size list creation
- Drop unused lastPhase and beforeRcDataPhase fields
- Remove Marker as a name for null
- Use Object in place of dynamic
- Remove unused field _lineStarts
- Rewrite asciiUpper2Lower as an extension
- Enable and fix lint prefer_final_locals
- Disable implicit casts
- Many improvements to the generated `tool/travis.sh` file
- Wrap more expressions in the script to fallow "pretty ansi" setting
- DRY up code that generates self-validate script
- Remove --use-get flag on Travis command
- mono_repo.yaml: add pub_action configuration
- Prepare to release v2.5.0
- mono_repo.yaml: added support for `self_validate` boolean value
- Add a --validate flag to the travis command
- add a language version comment to the generated build script keeping it at version 2.9
- [DISCUSSION ONLY] make the build apis return FutureOr
- Add support for native non-null asserts to build_web_compilers:entrypoint builder
- Update mono_repo usage
- add mono_repo travis --validate check
- rerun mono_repo travis
- add sound_null_safety and null_assertions options
Created an issue in dart-lang/sdk that received 1 comment
Analysis server quickfix to add missing setter overrides adds unnecessary "void"
When using the quickfix to add missing overrides for a class, setters are created like void set fieldName( while idiomatic dart style is to omit the …