Skip to content

Commit

Permalink
fix rebase
Browse files Browse the repository at this point in the history
  • Loading branch information
ematipico committed Jun 11, 2024
1 parent c216c2c commit 4784318
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions crates/biome_service/src/file_handlers/json.rs
Original file line number Diff line number Diff line change
Expand Up @@ -433,14 +433,15 @@ fn code_actions(params: CodeActionsParams) -> PullActionsResult {
let CodeActionsParams {
parse,
range,
workspace,
workspace: _,
path,
manifest,
language,
manifest: _,
language: _,
settings: _,
} = params;

debug_span!("Code actions JSON", range =? range, path =? path).in_scope(move || {
let tree = parse.tree();
let tree: JsonRoot = parse.tree();
trace_span!("Parsed file", tree =? tree).in_scope(move || PullActionsResult {
actions: Vec::new(),
})
Expand Down

0 comments on commit 4784318

Please sign in to comment.