Added no-stdlib and -Xfriend-paths compile options
This commit is contained in:
parent
04fd7fe037
commit
51d046a2f7
4 changed files with 31 additions and 5 deletions
|
@ -31,6 +31,7 @@ class CompileKotlinOptionsTest {
|
|||
var args = new CompileKotlinOptions()
|
||||
.argFile(List.of("arg1.txt", "arg2.txt"))
|
||||
.classpath(List.of("path1", "path2"))
|
||||
.noStdLib(false)
|
||||
.optIn(List.of("opt1", "opt2"))
|
||||
.options(List.of("-foo", "-bar"))
|
||||
.scriptTemplates(List.of("temp1", "temp2"))
|
||||
|
@ -92,6 +93,7 @@ class CompileKotlinOptionsTest {
|
|||
"-module-name", "module",
|
||||
"-no-jdk",
|
||||
"-no-reflect",
|
||||
"-no-stdlib",
|
||||
"-no-warn",
|
||||
"-opt-in", "opt1",
|
||||
"-opt-in", "opt2",
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue