Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion crates/oxc_linter/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -312,7 +312,9 @@ impl Linter {
/// `oxc_ast_tools` checks that the 2 copies are identical.
#[ast]
struct RawTransferMetadata2 {
/// Offset of `RawTransferData` within buffer.
/// Offset of `Program` within buffer.
/// Note: In `RawTransferMetadata` (in `napi/parser`), this field is offset of `RawTransferData`,
/// but here it's offset of `Program`.
pub data_offset: u32,
/// `true` if AST is TypeScript.
pub is_ts: bool,
Expand Down
Loading