Kevin Leung

Results 283 comments of Kevin Leung

Oh that's true, I'm looking for stdin/out/err. Maybe just a shortcut to tink_io would be sufficient. https://github.com/haxetink/tink_io/pull/18

> Somehow the changes cut off type names in the declarations: this must be caused by https://github.com/benmerckx/genes/pull/53/files#diff-7bf2a028528f7404eb9d69fd3d7993af0c90edc23bf610f37b4fe63b7d2df333R24 , which is a quick hack to "undo" the prefix. > Should it...

Still not perfect, for `var(get, never)` in abstract we get this: ```ts export declare class Future_Impl_ { static readonly status: FutureStatus protected static get_status($this: FutureObject): FutureStatus } ``` I think...

Perhaps we should just prefix the type with $ when it is using a globally reserved name

or we can use a prefixed name internally, this seems to work: ```ts // main.ts import {Promise as Promise__1} from './mypromise' var customPromise = new Promise__1(); var globalPromise = new...

Ref: https://www.w3schools.com/cssref/css3_pr_mediaquery.asp ![Screenshot 2021-12-24 at 11 35 19](https://user-images.githubusercontent.com/1103788/147313094-720302ec-9763-49f3-90fb-b38a99ebf218.png)

One of the potential problem of `--macro include` is that it forces the compiler to compile all those dead/orphan class which in turn forces the user to fix all the...

In that case, you don't need this library?

Thanks and I have inspected the build-esp32 script, by appending `$@` to `make` at least I can pass argument to the make call. But the firmware's makefile itself is pretty...