tact icon indicating copy to clipboard operation
tact copied to clipboard

Remove from codegen special cases that are supposed to be covered by const-eval

Open anton-trunov opened this issue 5 months ago • 0 comments

Things like this

if (f.op === "==" || f.op === "!=") {
    if (isNull(f.left) && isNull(f.right)) {
        if (f.op === "==") {
            return "true";
        } else {
            return "false";
        }
...
}

anton-trunov avatar Sep 12 '24 08:09 anton-trunov