ljleb

Results 256 comments of ljleb

@sirthias Could we allocate one single temporary value on top of the ValueStack per reduction rule run, which would be used to store temporary results generated by reduction rules? For...

Same problem here, are there any known workarounds? I'm using default arguments to enable unit testing in my case

Right now, the link seems dead. Is there any other way to get a 2018 release? Or should we update the code to use the new VST SDK 3?

Anybody having a clue what is happening?

I've been in the readme and tried the links to other implementations, and some of them are functioning without any issue appearently. I'll see if I can do something if...

@jgm-ktg look at `frozen::string`'s [constructor](https://github.com/serge-sans-paille/frozen/blob/f75fffcc077e5cda0bf3c87121dca103855d2be5/include/frozen/string.h#L50): it merely copies the arguments themselves into the object, so no deep copy or anything of the sort at the moment (and I assume changing...

Why not simply replacing ```scala implicit val W = Whitespace("""\s+"""r) ``` with ```scala implicit val W = Whitespace("""\s*"""r) ``` ? (`...+...` => `...*...`)

By the way, I tried to put: ```dockerfile RUN mount -o remount,rw / ``` at the end of the dockerfile, to no avail (I guess it was to be expected):...

I had encountered this problem a while ago actually. I just remembered that I had been looking on google/stack overflow and eventually had came up with this solution: ```sh echo...

Another thing I just realized is that syslinux.cfg contains this line: ```cfg APPEND ro root=/dev/sda1 rootfstype=ext4 initrd=/boot/initramfs-virt ``` Should replacing `ro` with `rw` fix the issue? It doesn't seem to...