We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
Minifying this in babili 0.0.12:
function foo(param) { if (param === null) return; let thingA = param.a; let thingB = param.b; if (!thingA && !thingB) return; let thingC = param.c; }
crashes with "TypeError: unknown: Cannot read property 'scope' of null".
That's a minimal repro, if you delete any lines from the function foo it doesn't reproduce any more.
The text was updated successfully, but these errors were encountered:
Fix crashing. Deopt instead.
b130a38
+ Fix #455
Fix crashing. Deopt instead. (#517)
713fb8f
No branches or pull requests
Minifying this in babili 0.0.12:
crashes with "TypeError: unknown: Cannot read property 'scope' of null".
That's a minimal repro, if you delete any lines from the function foo it doesn't reproduce any more.
The text was updated successfully, but these errors were encountered: