File tree Expand file tree Collapse file tree 3 files changed +5
-3
lines changed
library/src/scala/runtime/stdLibPatches Expand file tree Collapse file tree 3 files changed +5
-3
lines changed Original file line number Diff line number Diff line change 9393- [x] library/src/scala/runtime/Tuples.scala
9494- [x] library/src/scala/runtime/TypeBox.scala
9595- [x] library/src/scala/runtime/coverage/Invoker.scala
96- - [ ] library/src/scala/runtime/stdLibPatches/Predef.scala
97- - [ ] library/src/scala/runtime/stdLibPatches/language.scala
96+ - [x ] library/src/scala/runtime/stdLibPatches/Predef.scala
97+ - [x ] library/src/scala/runtime/stdLibPatches/language.scala
9898- [x] library/src/scala/util/CommandLineParser.scala
9999- [x] library/src/scala/util/FromDigits.scala
100100- [x] library/src/scala/util/NotGiven.scala
Original file line number Diff line number Diff line change 11package scala .runtime .stdLibPatches
22
3+ import scala .language .experimental .captureChecking
4+
35import scala .annotation .compileTimeOnly
46
57/** Scala 3 additions and replacements to the `scala.language` object.
Original file line number Diff line number Diff line change 11# !/usr/bin/env fish
22
33for file in (ls library/src/** .scala | sort )
4- set checkbox (if rg -Fq " import language.experimental.captureChecking" $file ; echo " [x]" ; else ; echo " [ ]" ; end )
4+ set checkbox (if rg -q ' import (scala.)? language.experimental.captureChecking' $file ; echo " [x]" ; else ; echo " [ ]" ; end )
55 printf " - %s %s\n" $checkbox $file
66end
You can’t perform that action at this time.
0 commit comments