-
-
Notifications
You must be signed in to change notification settings - Fork 1.3k
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
refactor(es/typescript): Simplifying enum and namespace transforms #9558
Conversation
🦋 Changeset detectedLatest commit: fb21f56 The changes in this PR will be included in the next version bump. Not sure what this means? Click here to learn what changesets are. Click here if you're a maintainer who wants to add another changeset to this PR |
CodSpeed Performance ReportMerging #9558 will improve performances by 3.44%Comparing Summary
Benchmarks breakdown
|
b6a4e5b
to
6b11f50
Compare
|
||
let mut decl_id_record = AHashSet::<Id>::default(); | ||
fn visit_mut_assign_expr(&mut self, n: &mut AssignExpr) { | ||
let is_lhs = mem::replace(&mut self.is_lhs, true); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It will be helpful if we have semantic analysis.
I need help solving a stack overflow issue. @kdy1 |
VarDeclKind::Let | ||
}; | ||
|
||
let init_arg = 'init_arg: { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Does this work with our MSRV? ()
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This feature has been introduced for a long time, and I expect it to work on MSRV.
https://rust-lang.github.io/rfcs/2046-label-break-value.html
3a20d4c
to
6ce5bdb
Compare
53b9a36
to
8671fbb
Compare
Related issue:
/*#__PURE__*/
for ts enum #9385