31a1d6ca66
1) for all cases of misusing of JsModule report on JsNonModule as well 2) report about non-top-level declarations with JsModule/JsNonModule 3) report about JsModule/JsNonModule declarations inside file marked with JsModule/JsNonModule 4) report about usages of declarations not marked with both JsModule and JsNonModule from UMD module
7 lines
182 B
Plaintext
Vendored
7 lines
182 B
Plaintext
Vendored
package
|
|
|
|
package foo {
|
|
@kotlin.js.JsModule(import = "bar") @kotlin.js.native public var bar: kotlin.Int
|
|
@kotlin.js.JsNonModule @kotlin.js.native public var baz: kotlin.Int
|
|
}
|