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 1995fcf commit 0f8a691Copy full SHA for 0f8a691
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