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? 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
Stuff like:
function setInternalProperty(___internal_esl_global, object, pname, pvalue) { object[pname] := pvalue; return [false, null] }; function l_len(___internal_esl_global, lst) { __v6290 := extern l_len_external(lst); return [false, __v6290] };
Could benefit form an @inline annotation to avoid unecessary functions calls
The text was updated successfully, but these errors were encountered:
This pattern also repeats a bunch:
__v4877 := [] symbols := __v4877
Generalized:
__v0 := <Constant value> code_var := __v0 // Ideally, this would inline to: code_var := <Constant value>
Seems wasteful having a fresh var to hold a constant
Sorry, something went wrong.
Each optimization technique should be addressed as a separate issue
No branches or pull requests
Stuff like:
Could benefit form an @inline annotation to avoid unecessary functions calls
The text was updated successfully, but these errors were encountered: