Skip to content

Commit c849e8f

Browse files
committed
[compiler] Improved terminal/fallthrough structure, support labels
ghstack-source-id: f977aff Pull Request resolved: #32148
1 parent 38dd9e5 commit c849e8f

File tree

5 files changed

+468
-240
lines changed

5 files changed

+468
-240
lines changed

compiler/packages/babel-plugin-react-compiler/src/HIR/PrintHIR.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -844,7 +844,7 @@ export function printPlace(place: Place): string {
844844
}
845845

846846
export function printIdentifier(id: Identifier): string {
847-
return `${printName(id.name)}\$${id.id}#${id.declarationId}${printScope(id.scope)}`;
847+
return `${printName(id.name)}\$${id.id}${printScope(id.scope)}`;
848848
}
849849

850850
function printName(name: IdentifierName | null): string {

0 commit comments

Comments
 (0)