[minor] Change expression evaluation cli argument to -Xexpression

This commit is contained in:
Ilya Chernikov
2019-12-11 12:10:56 +01:00
parent ba056bf78c
commit 354be2b14f
5 changed files with 4 additions and 4 deletions
@@ -152,7 +152,7 @@ class ExpressionRunner(private val code: List<String>) : RunnerWithCompiler() {
val compilerArgs = ArrayList<String>().apply {
addClasspathArgIfNeeded(classpath)
code.forEach {
add("-expression")
add("-Xexpression")
add(it)
}
addAll(arguments)