Shagen Ogandzhanian

Results 40 issues of Shagen Ogandzhanian

```typescript import {Pinger} from "./api/api"; function main() { new Pinger().ping(); } // api.ts export class Pinger { ping() { console.log("ping"); } } ``` is converted to a single file containing...

critical
typescript-conversion

following code: ```ts declare function ping(): {a: string} | {b: number} ``` will be converted to: ```kotlin external interface `T$0` { var a: String } external interface `T$1` { var...

minor
better-translation

- Install `[email protected]` - dukat node_modules/knex/types/index.d.ts One will get `exception: org.jetbrains.kotlin.util.KotlinFrontEndException: Exception while analyzing expression at (851,21) in /Users/shagen/tmp/issues/KNEX_184/a/index.module_knex.kt`

translation-failure

Following code: ```ts interface MapLike { } interface LinkedList { } type ListOrMultiMap = LinkedList | MapLike; declare function aliasUnionFunctionT(a: ListOrMultiMap); ``` is translated to: ```kotlin external interface MapLike external...

better-translation

- always move out interfaces from file annotated with JsModule and/or JsQualifier - inline native getters and setters

Following methods are missing from Uint8Array (and other ArrayBufferView implementations for that matter): ```kotlin fun slice(begin: Int, end: Int): Uint8Array fun subarray(begin: Int, end: Int): Uint8Array fun reverse(): Uint8Array //...

In `/gwtquery-core/src/main/java/com/google/gwt/query/client/plugins/events/EventsListener.java` there's a following piece of code: ```java private static native void sinkBitlessEvent(Element elem, String name) /*-{ if (!elem.__gquery) elem.__gquery = []; if (elem.__gquery[name]) return; elem.__gquery[name] = true; var...

Basically this is start for having more and more common tests for keyboard-related staff