├── .gitignore ├── .run └── Run IDE with Plugin.run.xml ├── README.md ├── gradle.properties ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── images └── example.png ├── settings.gradle.kts └── src └── main ├── kotlin └── com │ └── serranofp │ └── kotlin │ └── mismatch │ └── hints │ ├── MismatchInlayHintProvider.kt │ ├── Problem.kt │ └── TypeUtils.kt └── resources ├── META-INF └── plugin.xml └── messages └── kotlin-mismatch-hints.properties /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serras/kotlin-mismatch-hints/HEAD/.gitignore -------------------------------------------------------------------------------- /.run/Run IDE with Plugin.run.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serras/kotlin-mismatch-hints/HEAD/.run/Run IDE with Plugin.run.xml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serras/kotlin-mismatch-hints/HEAD/README.md -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serras/kotlin-mismatch-hints/HEAD/gradle.properties -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serras/kotlin-mismatch-hints/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serras/kotlin-mismatch-hints/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serras/kotlin-mismatch-hints/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serras/kotlin-mismatch-hints/HEAD/gradlew.bat -------------------------------------------------------------------------------- /images/example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serras/kotlin-mismatch-hints/HEAD/images/example.png -------------------------------------------------------------------------------- /settings.gradle.kts: -------------------------------------------------------------------------------- 1 | rootProject.name = "kotlin-mismatch-hints" -------------------------------------------------------------------------------- /src/main/kotlin/com/serranofp/kotlin/mismatch/hints/MismatchInlayHintProvider.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serras/kotlin-mismatch-hints/HEAD/src/main/kotlin/com/serranofp/kotlin/mismatch/hints/MismatchInlayHintProvider.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/serranofp/kotlin/mismatch/hints/Problem.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serras/kotlin-mismatch-hints/HEAD/src/main/kotlin/com/serranofp/kotlin/mismatch/hints/Problem.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/serranofp/kotlin/mismatch/hints/TypeUtils.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serras/kotlin-mismatch-hints/HEAD/src/main/kotlin/com/serranofp/kotlin/mismatch/hints/TypeUtils.kt -------------------------------------------------------------------------------- /src/main/resources/META-INF/plugin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serras/kotlin-mismatch-hints/HEAD/src/main/resources/META-INF/plugin.xml -------------------------------------------------------------------------------- /src/main/resources/messages/kotlin-mismatch-hints.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serras/kotlin-mismatch-hints/HEAD/src/main/resources/messages/kotlin-mismatch-hints.properties --------------------------------------------------------------------------------