cursive
cursive copied to clipboard
".." with "resolving" errors in IntelliJ
It seems the ".." macro is not being interpreted correctly.
Looking at the example below, starting from the 3rd line IntelliJ starts complaining that schemaGroup
cannot be resolved (and the same for the rest, complaining for validationLevel
, compatibility
and build
), although the methods do exist in the Java Builder and the CLojure code works as expected.
(.. (SchemaMetadata$Builder. ^String version)
(type AvroSchemaProvider/TYPE)
(schemaGroup group)
(validationLevel SchemaValidationLevel/LATEST)
(compatibility SchemaCompatibility/BACKWARD)
(build))