in src/main/kotlin/com/compiler/server/validation/AbstractCompilerArgumentsValidator.kt [17:29]
fun validateCompilerArguments(
compilerArguments: Map<String, Any>,
): Boolean {
if (compilerArguments.isEmpty()) return true
if (isCompilerArgumentsKeysValid(compilerArguments.keys).not()) {
return false
}
if (isCompilerArgumentsValuesValid(compilerArguments).not()) {
return false
}
return true
}