Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

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

Open
anton-trunov opened this issue Sep 12, 2024 · 0 comments
Labels
refactoring scope: codegen Code generation, a.k.a. compiler backend
Milestone

Comments

@anton-trunov
Copy link
Member

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 anton-trunov added the scope: codegen Code generation, a.k.a. compiler backend label Sep 12, 2024
@anton-trunov anton-trunov added this to the v1.6.0 milestone Sep 12, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
refactoring scope: codegen Code generation, a.k.a. compiler backend
Projects
None yet
Development

No branches or pull requests

1 participant