[Wasm] stdlib NFC: Suppress cast warnings in org.w3c

Also fix dukat build and update copyright year in generated files.
This commit is contained in:
Svyatoslav Kuzmich
2023-01-13 18:03:08 +01:00
parent 7fed003531
commit 238da4c793
21 changed files with 131 additions and 23 deletions
+3 -3
View File
@@ -15,13 +15,13 @@ dependencies {
task("downloadIDL", JavaExec::class) {
main = "org.jetbrains.kotlin.tools.dukat.DownloadKt"
classpath = sourceSets["main"].runtimeClasspath
dependsOn(":dukat:build")
dependsOn("build")
}
task("generateStdlibFromIDL", JavaExec::class) {
main = "org.jetbrains.kotlin.tools.dukat.LaunchJsKt"
classpath = sourceSets["main"].runtimeClasspath
dependsOn(":dukat:build")
dependsOn("build")
systemProperty("line.separator", "\n")
}
@@ -30,6 +30,6 @@ task("generateStdlibFromIDL", JavaExec::class) {
task("generateWasmStdlibFromIDL", JavaExec::class) {
main = "org.jetbrains.kotlin.tools.dukat.LaunchWasmKt"
classpath = sourceSets["main"].runtimeClasspath
dependsOn(":dukat:build")
dependsOn("build")
systemProperty("line.separator", "\n")
}