You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
DaniPopes opened this issue
Jul 13, 2024
· 0 comments
· Fixed by #31
Labels
A-parserArea: parsing source code to an ASTC-perfCategory: an issue highlighting optimization opportunities or PRs implementing suchE-easyCall for participation: Easy difficulty. Experience needed to fix: Not much. Good first issue.P-lowLow priority
We currently parse most lists and sequences of stuff using Vec, however in general most lists are at most a few elements long, so we should use SmallVec with 4 or 8 inline capacity to avoid allocating on the heap.
Additional context
No response
The text was updated successfully, but these errors were encountered:
DaniPopes
added
C-perf
Category: an issue highlighting optimization opportunities or PRs implementing such
A-parser
Area: parsing source code to an AST
P-low
Low priority
E-medium
Call for participation: Medium difficulty. Experience needed to fix: Intermediate.
labels
Jul 13, 2024
DaniPopes
added
E-easy
Call for participation: Easy difficulty. Experience needed to fix: Not much. Good first issue.
and removed
E-medium
Call for participation: Medium difficulty. Experience needed to fix: Intermediate.
labels
Jul 13, 2024
A-parserArea: parsing source code to an ASTC-perfCategory: an issue highlighting optimization opportunities or PRs implementing suchE-easyCall for participation: Easy difficulty. Experience needed to fix: Not much. Good first issue.P-lowLow priority
Describe the feature
We currently parse most lists and sequences of stuff using
Vec
, however in general most lists are at most a few elements long, so we should useSmallVec
with 4 or 8 inline capacity to avoid allocating on the heap.Additional context
No response
The text was updated successfully, but these errors were encountered: