Simon Krajewski

Results 102 issues of Simon Krajewski

I noticed that `opam install saturn` wants to install alcotest and all its dependencies: ``` === install 5 packages ✶ alcotest 1.9.0 [required by lockfree] ✶ fmt 0.10.0 [required by...

I had a strange case where `opam upgrade` wanted me to downgrade domainslib from 0.5.1 to 0.5.0: ``` C:\Users\simn>opam upgrade The following actions will be performed: === downgrade 1 package...

I've been fighting with performance problems for classes that wrap native arrays/Vector like this: ```haxe import haxe.ds.Vector; class Page { public final data:Vector; public function new(size:Int) { data = new...

I've been wondering about this particular error situation: ```haxe interface I { function f():Void; } class C implements I { public function new() {} function f() {} // Field f...

```haxe function main() { trace("hello"); #if hl } ``` Compiling this to HL succeeds, on other targets we get the expected `Unclosed conditional compilation block` error. Could be a regression.

@yuxiaomao Apologies, but: ```haxe function main() { function iterTree(tree:Tree) { return null; } iterTree(null); } typedef Tree = { var left:Tree; } ``` ``` Called from Hlcode.tsame.loop in file "src/generators/hlcode.ml",...

platform-hl

I don't understand why we would want to track this manually. The depth of an error should at all times be derived from the error's structure, and I don't see...

```haxe import haxe.exceptions.NotImplementedException; function throwing() { throw new NotImplementedException(); } function syncFun2() { throwing(); } function syncFun1() { syncFun2(); } function main() { try { syncFun1(); } catch(e:NotImplementedException) { trace(e.stack);...

feature-hxb

I'm seeing some version of this on every other run: ``` OpamDownload.Download_fail(_, "curl failed: \"D:\\\\cygwin\\\\bin\\\\curl.exe --write-out %{http_code}\\\\n --retry 10 --retry-delay 2 --user-agent opam/2.3.0 -L -o C:\\\\Users\\\\runneradmin\\\\AppData\\\\Local\\\\Temp\\\\opam-6100-4b6a36\\\\sha512.sum.part -- [https://cygwin.com/sha512.sum\](https://cygwin.com/sha512.sum/)" exited with...

I don't know how to reproduce this yet, but on a coroutine branch I'm seeing this error on lua. Here's a stripped down version of the relevant output: ```lua while...

platform-lua