Slava Egorov

Results 443 comments of Slava Egorov

There might be a bug in implementation of const coverage. I think the assertion just indicates that we tried to find some class using its canonical name and that did...

More discussion happening here (including proposal from @lrhn): https://github.com/dart-lang/language/issues/939

@osaxma the crash you are seeing is tracked in https://github.com/dart-lang/sdk/issues/49641, it's unrelated to the topic of this issue.

@terrier989 note that you can just bind to `objc_msgSend` multiple times with different signatures (with 0, 1, 2, 3, 4, 5, 6, etc additional parameters). Would not that be good...

Fair point @terrier989 - I was under impression that varargs calling convention is the same as non-varargs, which turns out is not the case. Things would work on X64 as...

@dcharkes Maybe we could consider an alternative design which outlaws direct closure calls and instead relies on static dispatch, e.g. ```dart @FfiNative external int printf(Pointer fmt, List args); printf("%s %d",...

@dcharkes Oh right. For integers and doubles we need the right size. Maybe then: ```dart @FfiNative external int printf(Pointer fmt, List args); ``` Users are expected to do: ```dart printf("%d...