Skip to content

Compiler plugin breaks for data schemas with duplicate name #1181

Open
@Jolanrensen

Description

@Jolanrensen

file1.kt:

@DataSchema
private interface A {
    // TODO
}

private fun DataFrame<A>.something() = TODO()

file2.kt:

@DataSchema
private interface A {
    val a: Int
}

private fun DataFrame<A>.something() {
    // some implementation
}

Especially common in a teaching scenario where one file is the exercise and the second once contains the solution.

Metadata

Metadata

Assignees

Labels

Compiler pluginAnything related to the DataFrame Compiler PluginbugSomething isn't working

Type

No type

Projects

No projects

Milestone

Relationships

None yet

Development

No branches or pull requests

Issue actions