Dan Korostelev

Results 109 issues of Dan Korostelev

(from https://github.com/nadako/haxe-coroutines/issues/15#issuecomment-782758999) We could probably have the coroutine state exposable as an object rather just being a bunch of closure captured local vars and then provide a way to pass...

So far I failed to reproduce this outside VSCode, but it is 100% reproducible inside it. Might have something to do with `--cwd` calls because of the weird `changed directories:...

platform-macro
feature-compiler-cache
test-needed

![image](https://user-images.githubusercontent.com/49749/177118138-22952d43-787d-4e16-a0b8-201165850bb7.png) ```haxe enum abstract E(Int) { final A; final B; function f() { switch (abstract) { case A: case B: } } } ```

bug
feature-ide

So currently the doc for `EReg.matched` says this: > The index `n` corresponds to the n-th set of parentheses in the pattern of `this` EReg. If no such sub-group exists,...

documentation

```haxe class Main { @:generic static function d(o:T):()->Void { return o.dispose; } function new() {} static function main() { var dispose = d(new Main()); dispose(); } public function dispose() {...

bug
platform-java
platform-cs

We're considering integrating FeathersUI in our codebase and so far it works like a charm except one small thing I've noticed: In `Scroller.hx` there's a hack/workaround to properly handle mouse...

enhancement

It would be nice to have a way to configure additional gap per-element in layouts like `HorizontalLayout`. I imagine something like `HorizontalLayoutData.leftGap/rightGap` (that can also be negative) that is simply...

enhancement

Looks like currently there's no easy way to control what `PopupListView`'s button properties are changed when selection changes. For example, I'd like to change button icon to the currently selected...

enhancement

Currently, `TextInput` always shows the `prompt` text when `text` is empty, even if the input is focused and input cursor is blinking. It would be nice to have an option...

enhancement