Skip to content

Conversation

@Dunqing
Copy link
Member

@Dunqing Dunqing commented Oct 21, 2025

No description provided.

Copilot AI review requested due to automatic review settings October 21, 2025 12:28
@github-actions github-actions bot added A-formatter Area - Formatter C-enhancement Category - New feature or request labels Oct 21, 2025
Copy link
Member Author

Dunqing commented Oct 21, 2025


How to use the Graphite Merge Queue

Add either label to this PR to merge it via the merge queue:

  • 0-merge - adds this PR to the back of the merge queue
  • hotfix - for urgent hot fixes, skip the queue and merge this PR next

You must have a Graphite account in order to use the merge queue. Sign up using this link.

An organization admin has enabled the Graphite Merge Queue in this repository.

Please do not merge from GitHub as this will restart CI on PRs being processed by the merge queue.

This stack of pull requests is managed by Graphite. Learn more about stacking.

Copy link
Contributor

Copilot AI left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Pull Request Overview

This PR enables printing of the Formatter's intermediate representation (IR) by implementing the Display trait for the Document type. The changes restructure the FormatContext to accept individual components rather than requiring a full Program object, making it possible to format IR elements independently.

Key Changes:

  • Made the format method public to expose the intermediate Formatted type containing the document IR
  • Refactored FormatContext::new to accept individual source text, type, and comments parameters instead of a Program object
  • Implemented Display for Document and Format trait for &[FormatElement] to enable IR printing

Reviewed Changes

Copilot reviewed 6 out of 6 changed files in this pull request and generated 1 comment.

Show a summary per file
File Description
crates/oxc_formatter/src/lib.rs Made format method public and updated FormatContext construction to pass individual parameters
crates/oxc_formatter/src/formatter/state.rs Added tracking for interned elements during IR printing
crates/oxc_formatter/src/formatter/mod.rs Updated format function to use new FormatState constructor
crates/oxc_formatter/src/formatter/format_element/document.rs Implemented Display and Format traits to enable IR printing
crates/oxc_formatter/src/formatter/context.rs Refactored constructor to accept individual parameters instead of Program
crates/oxc_formatter/examples/formatter.rs Updated example to demonstrate IR printing functionality

Tip: Customize your code reviews with copilot-instructions.md. Create the file or learn how to get started.

@codspeed-hq
Copy link

codspeed-hq bot commented Oct 21, 2025

CodSpeed Performance Report

Merging #14855 will not alter performance

Comparing 10-21-feat_formatter_support_printing_formatter_ir (cdbddef) with main (f3b75c3)

Summary

✅ 33 untouched
⏩ 4 skipped1

Footnotes

  1. 4 benchmarks were skipped, so the baseline results were used instead. If they were deleted from the codebase, click here and archive them to remove them from the performance reports.

@graphite-app graphite-app bot added the 0-merge Merge with Graphite Merge Queue label Oct 23, 2025
@graphite-app
Copy link
Contributor

graphite-app bot commented Oct 23, 2025

Merge activity

@graphite-app graphite-app bot force-pushed the 10-21-feat_formatter_support_printing_formatter_ir branch from cdbddef to 8fe7e85 Compare October 23, 2025 00:42
@graphite-app graphite-app bot merged commit 8fe7e85 into main Oct 23, 2025
20 checks passed
@graphite-app graphite-app bot deleted the 10-21-feat_formatter_support_printing_formatter_ir branch October 23, 2025 00:48
@graphite-app graphite-app bot removed the 0-merge Merge with Graphite Merge Queue label Oct 23, 2025
@Boshen Boshen mentioned this pull request Oct 30, 2025
leaysgur added a commit that referenced this pull request Oct 30, 2025
## [0.9.0] - 2025-10-30

### 🚀 Features

- 8fe7e85 formatter: Support printing Formatter IR (#14855) (Dunqing)

### 🐛 Bug Fixes

- a6b6ef8 formatter: Correct calculating layout for
`TSNonNullExpression` in `StaticMemberExpression` (#15065) (Dunqing)
- 99bd995 formatter: Print parenthesis for sequence expression in
`ReturnStatement` and `ExpressionStatement` (#15062) (Dunqing)
- f3fb998 formatter: Correct printing comments for `TSAsExpression`
(#15061) (Dunqing)
- 1e4a018 formatter: Correct checking of the short argument for
`CallArguments` (#15055) (Dunqing)
- c0dfd9b formatter: Print comments before fat arrow as-is for
`ArrowFunctionExpression` (#15050) (Dunqing)
- 206b519 formatter: Should hug parameter with `TSMappedType` type
annotation (#15049) (Dunqing)
- e48c604 formatter: Incorrect formatting of a function with `this`
parameter (#15031) (Dunqing)
- a9f0c45 formatter: Decorators and class method on the same line
shouldn't be broken by a leading comment of the method (#15029)
(Dunqing)
- 43d74e4 formatter: Handle `<CRLF>` for `SourceText` (#15016)
(leaysgur)
- 34fab40 formatter: Correct calculating layout for `ChainExpression` in
`StaticMemberExpression` (#14986) (Dunqing)
- 68dc101 formatter: Should not break when the parent of root of
`StaticMemberExpression` is used as the `Argument` of `NewExpression`
(#14985) (Dunqing)
- 071b739 formatter: Align the short argument handling for
UnaryExpression with Prettier (#14984) (Dunqing)
- 3940f3a formatter: `BestFitting` doesn't exactly matches the
`conditinalGroup` behavior in Prettier (#14983) (Dunqing)
- 4a84e44 formatter: Align the logic of printing type parameters,
parameters, and return type for functions with Prettier (#14942)
(Dunqing)
- 68c1f2a formatter: Non-nested static member expressions will never
break (#14929) (Dunqing)
- 42adc47 formatter: Check whether a type alias is complex when its
right hand side never break (#14928) (Dunqing)
- e501f13 formatter: Should not add a trailing comma for long curried
calls when `trailingComma` is es5 (#14913) (Dunqing)

### 🚜 Refactor

- 7d64291 formatter: Simplify printing ClassElement with a semicolon
(#15030) (Dunqing)
- 5de99c2 formatter: Export unified way to get_parse_options (#15027)
(leaysgur)
- f6f22e2 formatter: Clean up unneeded implementations for printing
comments (#14935) (Dunqing)
- 7a2b9d1 formatter: Improve printing trailing comments (#14934)
(Dunqing)
- ba10caa formatter: Align printing trailing comments with Prettier
(#14927) (Dunqing)
- 597c9e8 formatter: Remove redundunt public API (#14915) (leaysgur)

### ⚡ Performance

- 467b3a1 formatter: Optimize grouping logic for call arguments (#15033)
(Dunqing)

Co-authored-by: leaysgur <6259812+leaysgur@users.noreply.github.com>
@Boshen Boshen mentioned this pull request Oct 30, 2025
graphite-app bot pushed a commit that referenced this pull request Oct 30, 2025
## [0.9.0] - 2025-10-30

### 🚀 Features

- 8fe7e85 formatter: Support printing Formatter IR (#14855) (Dunqing)

### 🐛 Bug Fixes

- a6b6ef8 formatter: Correct calculating layout for `TSNonNullExpression` in `StaticMemberExpression` (#15065) (Dunqing)
- 99bd995 formatter: Print parenthesis for sequence expression in `ReturnStatement` and `ExpressionStatement` (#15062) (Dunqing)
- f3fb998 formatter: Correct printing comments for `TSAsExpression` (#15061) (Dunqing)
- 1e4a018 formatter: Correct checking of the short argument for `CallArguments` (#15055) (Dunqing)
- c0dfd9b formatter: Print comments before fat arrow as-is for `ArrowFunctionExpression` (#15050) (Dunqing)
- 206b519 formatter: Should hug parameter with `TSMappedType` type annotation (#15049) (Dunqing)
- e48c604 formatter: Incorrect formatting of a function with `this` parameter (#15031) (Dunqing)
- a9f0c45 formatter: Decorators and class method on the same line shouldn't be broken by a leading comment of the method (#15029) (Dunqing)
- 43d74e4 formatter: Handle `<CRLF>` for `SourceText` (#15016) (leaysgur)
- 34fab40 formatter: Correct calculating layout for `ChainExpression` in `StaticMemberExpression` (#14986) (Dunqing)
- 68dc101 formatter: Should not break when the parent of root of `StaticMemberExpression` is used as the `Argument` of `NewExpression` (#14985) (Dunqing)
- 071b739 formatter: Align the short argument handling for UnaryExpression with Prettier (#14984) (Dunqing)
- 3940f3a formatter: `BestFitting` doesn't exactly matches the `conditinalGroup` behavior in Prettier (#14983) (Dunqing)
- 4a84e44 formatter: Align the logic of printing type parameters, parameters, and return type for functions with Prettier (#14942) (Dunqing)
- 68c1f2a formatter: Non-nested static member expressions will never break (#14929) (Dunqing)
- 42adc47 formatter: Check whether a type alias is complex when its right hand side never break (#14928) (Dunqing)
- e501f13 formatter: Should not add a trailing comma for long curried calls when `trailingComma` is es5 (#14913) (Dunqing)

### 🚜 Refactor

- 7d64291 formatter: Simplify printing ClassElement with a semicolon (#15030) (Dunqing)
- 5de99c2 formatter: Export unified way to get_parse_options (#15027) (leaysgur)
- f6f22e2 formatter: Clean up unneeded implementations for printing comments (#14935) (Dunqing)
- 7a2b9d1 formatter: Improve printing trailing comments (#14934) (Dunqing)
- ba10caa formatter: Align printing trailing comments with Prettier (#14927) (Dunqing)
- 597c9e8 formatter: Remove redundunt public API (#14915) (leaysgur)

### ⚡ Performance

- 467b3a1 formatter: Optimize grouping logic for call arguments (#15033) (Dunqing)

### 💼 Other

- aceff66 oxfmt: V0.9.0 (#15088) (Boshen)
@Boshen Boshen mentioned this pull request Oct 30, 2025
graphite-app bot pushed a commit that referenced this pull request Oct 30, 2025
## [0.9.0] - 2025-10-30

### 🚀 Features

- 8fe7e85 formatter: Support printing Formatter IR (#14855) (Dunqing)

### 🐛 Bug Fixes

- a6b6ef8 formatter: Correct calculating layout for `TSNonNullExpression` in `StaticMemberExpression` (#15065) (Dunqing)
- 99bd995 formatter: Print parenthesis for sequence expression in `ReturnStatement` and `ExpressionStatement` (#15062) (Dunqing)
- f3fb998 formatter: Correct printing comments for `TSAsExpression` (#15061) (Dunqing)
- 1e4a018 formatter: Correct checking of the short argument for `CallArguments` (#15055) (Dunqing)
- c0dfd9b formatter: Print comments before fat arrow as-is for `ArrowFunctionExpression` (#15050) (Dunqing)
- 206b519 formatter: Should hug parameter with `TSMappedType` type annotation (#15049) (Dunqing)
- e48c604 formatter: Incorrect formatting of a function with `this` parameter (#15031) (Dunqing)
- a9f0c45 formatter: Decorators and class method on the same line shouldn't be broken by a leading comment of the method (#15029) (Dunqing)
- 43d74e4 formatter: Handle `<CRLF>` for `SourceText` (#15016) (leaysgur)
- 34fab40 formatter: Correct calculating layout for `ChainExpression` in `StaticMemberExpression` (#14986) (Dunqing)
- 68dc101 formatter: Should not break when the parent of root of `StaticMemberExpression` is used as the `Argument` of `NewExpression` (#14985) (Dunqing)
- 071b739 formatter: Align the short argument handling for UnaryExpression with Prettier (#14984) (Dunqing)
- 3940f3a formatter: `BestFitting` doesn't exactly matches the `conditinalGroup` behavior in Prettier (#14983) (Dunqing)
- 4a84e44 formatter: Align the logic of printing type parameters, parameters, and return type for functions with Prettier (#14942) (Dunqing)
- 68c1f2a formatter: Non-nested static member expressions will never break (#14929) (Dunqing)
- 42adc47 formatter: Check whether a type alias is complex when its right hand side never break (#14928) (Dunqing)
- e501f13 formatter: Should not add a trailing comma for long curried calls when `trailingComma` is es5 (#14913) (Dunqing)

### 🚜 Refactor

- 7d64291 formatter: Simplify printing ClassElement with a semicolon (#15030) (Dunqing)
- 5de99c2 formatter: Export unified way to get_parse_options (#15027) (leaysgur)
- f6f22e2 formatter: Clean up unneeded implementations for printing comments (#14935) (Dunqing)
- 7a2b9d1 formatter: Improve printing trailing comments (#14934) (Dunqing)
- ba10caa formatter: Align printing trailing comments with Prettier (#14927) (Dunqing)
- 597c9e8 formatter: Remove redundunt public API (#14915) (leaysgur)

### ⚡ Performance

- 467b3a1 formatter: Optimize grouping logic for call arguments (#15033) (Dunqing)

### 💼 Other

- 6368793 oxfmt: V0.9.0 (#15091) (Boshen)
- aceff66 oxfmt: V0.9.0 (#15088) (Boshen)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

A-formatter Area - Formatter C-enhancement Category - New feature or request

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants