mirror of
https://github.com/danbulant/oxc
synced 2026-05-24 12:21:58 +00:00
chore(linter): expose Message:start and Message:end (#3268)
Expose the `start` and `end` field for modification in downstream projects.
This commit is contained in:
parent
b27a905958
commit
56346d59da
1 changed files with 2 additions and 2 deletions
|
|
@ -27,8 +27,8 @@ pub struct FixResult<'a> {
|
|||
|
||||
pub struct Message<'a> {
|
||||
pub error: OxcDiagnostic,
|
||||
start: u32,
|
||||
end: u32,
|
||||
pub start: u32,
|
||||
pub end: u32,
|
||||
pub fix: Option<Fix<'a>>,
|
||||
fixed: bool,
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue