Improved testing of integer-type arguments
This commit is contained in:
parent
f8e4354e35
commit
37cdfd363d
2 changed files with 21 additions and 5 deletions
|
@ -65,6 +65,17 @@ public class CompileKotlinOptions {
|
|||
return this;
|
||||
}
|
||||
|
||||
/**
|
||||
* Allow using declarations only from the specified version of Kotlin bundled libraries.
|
||||
*
|
||||
* @param version the api version
|
||||
* @return this operation instance
|
||||
*/
|
||||
public CompileKotlinOptions apiVersion(int version) {
|
||||
apiVersion_ = String.valueOf(version);
|
||||
return this;
|
||||
}
|
||||
|
||||
/**
|
||||
* Read the compiler options from the given files.
|
||||
* <p>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue