Michele Inetovsky
Michele Inetovsky
I propose to automatically convert such structure languages `if (i > b) { throw(error); } ` to such `throw_if(error, i > b);` due to the fact that due to the...
I propose to add a check for compliance of the returned value with the signature. Also add a proposal to change the signature, and correct the lines that call this...
While using multiple conditions, the lexer does not notice the error. Broken code: `(cpu > max_cpu | cpu < min_cpu)` Working code: `((cpu > max_cpu) | (cpu < min_cpu))`