You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
case toolArg("scalac", _) => sys.error(s"`// scalac: args` not supported. Please use `//> using options args`${filename.fold("")(f =>s" in file $f")}")
136
142
case toolArg("javac", _) => sys.error(s"`// javac: args` not supported. Please use `//> using javacOpt args`${filename.fold("")(f =>s" in file $f")}")
137
143
case toolArg(name, args) =>List((name, args))
138
144
case _ =>Nil
139
-
} ++
140
-
lines.flatMap {
145
+
++
146
+
lines.flatMap:
141
147
case directiveOptionsArg(args) =>List(("scalac", args))
142
148
case directiveJavacOptions(args) =>List(("javac", args))
143
149
case directiveTargetOptions(platform) =>List(("target", platform))
144
150
case directiveUnknown(rest) => sys.error(s"Unknown directive: `//> using ${CommandLineParser.tokenize(rest).headOption.getOrElse("''")}`${filename.fold("")(f =>s" in file $f")}")
0 commit comments