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
8,118 contributions in the last year
Activity overview
Contribution activity
October 2020
- dwijnand/silencer Scala
- dwijnand/homebrew-extras Ruby
- dwijnand/sbt-github-actions Scala
Created a pull request in scala/scala that received 10 comments
Revert ExecutionContext.global to not be a BatchingExecutor
Fixes scala/bug#12089
- Upgrade to JLine 3.17.1
- Stick TASTy reading behind a -Ytasty-reader flag
- Make the CharSequence wrappers in Predef non-implicit, for JDK 15
- [nomerge] Fix backported deprecation "since"
- Unsuppress exhaustivity warnings
- Fix another patmat max recursion depth
- Travis CI: make a command error fatal
- Fix attempt for flaky foldRightAllocations test
- Fix attempt for "max recursion depth" in Typer
- Disable fatal warnings in the library
- Allow forks to run bootstrapped tests on Travis CI
- ListMap is reverse oriented, so use that for foldRight (forward-port)
- Don't box some simple primitives (forward-port)
- Update MiMa & add exclusions for new trait overrides
- [2.12] Configurable warnings (backported)
- Merge 2.12.x into 2.13.x [ci: last-only]
- Introduces ExecutionContext.opportunistic as a private[scala] instanc…
- Various improvements to Tasty Reader [ci: last-only]
- Allow using classOf with object type
- remove unused import, fix the build
- mention scala-library-next in readme
- build/CI: add comments, remove a redundancy
- Allow forks to run bootstrapped tests on Travis CI
- Re-enable fatal warnings
- Clean up warnings in compiler module
- fix back-quoted constructor params with identical prefixes
- language spec: document the un-updated status of the changelog
- update nightly build information in README.md
- No mixin forwarders for known binary incompatible trait overrides
- fixes scala/bug #11676 un-deprecate useful StringOps operations
- Fix ArrayBuffer incorrectly reporting the upper bound in IndexOutOfBoundsException
- [backport] always keep a field for `private[this] var` class parameters
- Use unmixed backticks more uniformly
- Use correct tree for child unapply context
- Java imports compete with level 4 definitions
- Add scaladoc to scala.collection.MapFactory
- Update Syntax-Summary to reflect syntax laid out in previous chapters
- Upgrade to sbt 1.4.1
- Allow -Wconf configuration of non-cooperative equals warning
- Revert "Dealias when necessary to substitute symbols"
- Specialize attachments for common case of zero or one attachments.
- Some pull request reviews not shown.
Created an issue in scala/bug that received 2 comments
Sealed class being its own subclass causes exhaustivity false positives
Steps Using Scala 2.13.3, sealed class Xs[+A] case object End extends Xs[Nothing] final case class Link[B](head: B, tail: Xs[B]) extends Xs[B] class …