Lucas Bajolet

Results 29 comments of Lucas Bajolet

I think this should only be added to `unescape_nit`, nothing should be done C-wise, except maybe compile every non-ASCII Unicode character to their byte representation as `\x` sequences (this could...

This is linked with what I pointed out yesterday, imo the spec should be something along the lines of: * Allow \(u|U)[0-9A-Fa-f]{1,6} * Disallow characters above the Unicode maximum (0x10FFFF)...

Achievement idea: After the battle. `Give a +1 on a merged PR` (mettre un +1 sur une PR déjà mergé)

This is strange, I don't have a crash when compiling or executing the program. ~~~sh $ nitc test.nit $ ./test -2147483648 ~~~ nitc version: v0.8-1978-g117eb1e system: 4.4.0-75-generic #96-Ubuntu SMP Thu...

The existence of a debugger does not supersede the need for such macros. C/C++ and D all have functional debuggers, and all three of them still support such a structure....

Yeah, I guess this could do too, but the nice thing with the static if way is complete reusability of code pieces, the dead code strategy implies the uncommenting or...

I agree this could be interesting as it could clean the code, asserts could for the most part be replaced by pre and post conditions. I also agree with the...

@privat now that `read_char` supports codecs properly, this could be reopened if still valuable

@egagnon I do agree that programmers will make mistakes when using a manual system, however for some special cases when the analysis could not determine an object as locally allocable,...

As we discussed earlier with @privat, declaring and using vars in a multiple return seems a bit confusing for me. e.g. ``` nit (var x, y) = div(5,2) ``` Were...