We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
.toList
List
1 parent 21ff130 commit 5a40ae6Copy full SHA for 5a40ae6
compiler/src/dotty/tools/MainGenericRunner.scala
@@ -148,7 +148,7 @@ object MainGenericRunner {
148
case (o @ javaOption(striped)) :: tail =>
149
processArgs(tail, settings.withJavaArgs(striped).withScalaArgs(o))
150
case (o @ scalaOption(_*)) :: tail =>
151
- val remainingArgs = (CommandLineParser.expandArg(o) ++ tail).toList
+ val remainingArgs = CommandLineParser.expandArg(o) ++ tail
152
processArgs(remainingArgs, settings)
153
case (o @ colorOption(_*)) :: tail =>
154
processArgs(tail, settings.withScalaArgs(o))
0 commit comments