-
-
Notifications
You must be signed in to change notification settings - Fork 477
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
perf(transformer/arrow-function): optimize generate_super_binding_name
#7312
perf(transformer/arrow-function): optimize generate_super_binding_name
#7312
Conversation
Your org has enabled the Graphite merge queue for merging into mainAdd the label “0-merge” to the PR and Graphite will automatically add it to the merge queue when it’s ready to merge. Or use the label “hotfix” to add to the merge queue as a hot fix. You must have a Graphite account and log in to Graphite in order to use the merge queue. Sign up using this link. |
af7a5cf
to
d51e25a
Compare
CodSpeed Performance ReportMerging #7312 will not alter performanceComparing Summary
|
6ce1352
to
ddbe935
Compare
d51e25a
to
d8e397f
Compare
Merge activity
|
ddbe935
to
50c18c7
Compare
…me` (#7312) Optimize this function in various ways: * Return a static `Atom` (rather than allocating into arena) if no `property`. * Reserve capacity for `ArenaString` at start. * Make path for unicode identifiers (very rare case) `#[cold]` and `#[inline(never)]`. * Slightly faster uppercase conversion.
d8e397f
to
4892875
Compare
50c18c7
to
c4d5c2d
Compare
…me` (#7312) Optimize this function in various ways: * Return a static `Atom` (rather than allocating into arena) if no `property`. * Reserve capacity for `ArenaString` at start. * Make path for unicode identifiers (very rare case) `#[cold]` and `#[inline(never)]`. * Slightly faster uppercase conversion.
4892875
to
061207d
Compare
…me` (#7312) Optimize this function in various ways: * Return a static `Atom` (rather than allocating into arena) if no `property`. * Reserve capacity for `ArenaString` at start. * Make path for unicode identifiers (very rare case) `#[cold]` and `#[inline(never)]`. * Slightly faster uppercase conversion.
c4d5c2d
to
389b84e
Compare
061207d
to
0a24703
Compare
Optimize this function in various ways:
Atom
(rather than allocating into arena) if noproperty
.ArenaString
at start.#[cold]
and#[inline(never)]
.