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 6d0d5a8 commit 923a357Copy full SHA for 923a357
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