Alexey Andreev

Results 279 comments of Alexey Andreev

Should it be possible to put `@JsModule` annotation on a non-toplevel declaration? I.e. is the code like this possible? ``` kotlin class A { @JsModule("bbb") @native class B { }...

Can `@JsModule` be nested? For example ``` kotlin @file:JsModule("foo") package foo @native fun bar() @JsModule("baz") @native fun baz() ```

What if a file is marked with `JsNonModule`, it has `foo` method and another module with `plain` type calls `foo`? How should it be translated to JS?

`foo` _is_ a native declarations.

It looks inconsistent with, for example, `object`, members of which will be referenced via dot qualifier. Also, it's unclear what to do with UMD wrappers in this case.

> The serialization is necessary because Java 8 doesn't provide a reflection mechanism that can be used by Jinq to determine which lambda it received. When Jinq receives a lambda,...

Thank you. This is not urgent. As for people who define getters without thinking. They probably break encapsulation. Imagine someone who designs collection library and provides direct access of backing...

> With 0.7.0-SNAPSHOT.It works, if i add the lines in team-core > VirtualTableBuilder (line ~367): Can you provide the code you are trying to compile with TeaVM? Also, what's the...

@jbrionne but what is the purpose of this 'good framework'? What's the purpose of compiling Java to Wasm?