@@ -35,21 +35,21 @@ data class DiagnosticsConfiguration(
35
35
var debounceTime : Long = 250L
36
36
)
37
37
38
- public data class JVMConfiguration (
38
+ data class JVMConfiguration (
39
39
/* * Which JVM target the Kotlin compiler uses. See Compiler.jvmTargetFrom for possible values. */
40
40
var target : String = " default"
41
41
)
42
42
43
- public data class CompilerConfiguration (
43
+ data class CompilerConfiguration (
44
44
val jvm : JVMConfiguration = JVMConfiguration ()
45
45
)
46
46
47
- public data class IndexingConfiguration (
47
+ data class IndexingConfiguration (
48
48
/* * Whether an index of global symbols should be built in the background. */
49
49
var enabled : Boolean = true
50
50
)
51
51
52
- public data class ExternalSourcesConfiguration (
52
+ data class ExternalSourcesConfiguration (
53
53
/* * Whether kls-URIs should be sent to the client to describe classes in JARs. */
54
54
var useKlsScheme : Boolean = false ,
55
55
/* * Whether external classes should be automatically converted to Kotlin. */
@@ -104,7 +104,7 @@ class GsonPathConverter : JsonDeserializer<Path?> {
104
104
}
105
105
}
106
106
107
- public data class Configuration (
107
+ data class Configuration (
108
108
val codegen : CodegenConfiguration = CodegenConfiguration (),
109
109
val compiler : CompilerConfiguration = CompilerConfiguration (),
110
110
val completion : CompletionConfiguration = CompletionConfiguration (),
0 commit comments