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 93
93
- [x] library/src/scala/runtime/Tuples.scala
94
94
- [x] library/src/scala/runtime/TypeBox.scala
95
95
- [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
98
98
- [x] library/src/scala/util/CommandLineParser.scala
99
99
- [x] library/src/scala/util/FromDigits.scala
100
100
- [x] library/src/scala/util/NotGiven.scala
Original file line number Diff line number Diff line change 1
1
package scala .runtime .stdLibPatches
2
2
3
+ import scala .language .experimental .captureChecking
4
+
3
5
import scala .annotation .compileTimeOnly
4
6
5
7
/** Scala 3 additions and replacements to the `scala.language` object.
Original file line number Diff line number Diff line change 1
1
# !/usr/bin/env fish
2
2
3
3
for 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 )
5
5
printf " - %s %s\n" $checkbox $file
6
6
end
You can’t perform that action at this time.
0 commit comments