Skip to content

Commit 93e2403

Browse files
committed
chore: upgrade to dprint-core 0.69.0
1 parent b4a00b2 commit 93e2403

3 files changed

Lines changed: 9 additions & 4 deletions

File tree

Cargo.lock

Lines changed: 3 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ harness = false
3232
[dependencies]
3333
capacity_builder = "0.5.0"
3434
deno_ast = { version = "0.53.0", features = ["view"] }
35-
dprint-core = { version = "0.68.2", features = ["formatting"] }
35+
dprint-core = { version = "0.69.0", features = ["formatting"] }
3636
dprint-core-macros = "0.1.0"
3737
percent-encoding = "2.3.1"
3838
rustc-hash = "2.1.1"

src/generation/generate.rs

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1968,6 +1968,7 @@ fn gen_assignment_expr<'a>(node: &AssignExpr<'a>, context: &mut Context<'a>) ->
19681968
lines_span,
19691969
allow_inline_multi_line: true,
19701970
allow_inline_single_line: true,
1971+
is_known_multi_line: false,
19711972
});
19721973
}
19731974

@@ -2144,6 +2145,7 @@ fn gen_binary_expr<'a>(node: &BinExpr<'a>, context: &mut Context<'a>) -> PrintIt
21442145
lines_span,
21452146
allow_inline_multi_line: true,
21462147
allow_inline_single_line: true,
2148+
is_known_multi_line: false,
21472149
});
21482150
}
21492151

@@ -6584,6 +6586,7 @@ fn gen_union_or_intersection_type<'a, 'b>(node: UnionOrIntersectionType<'a, 'b>,
65846586
lines_span: None,
65856587
allow_inline_multi_line,
65866588
allow_inline_single_line,
6589+
is_known_multi_line: false,
65876590
});
65886591
}
65896592

@@ -7987,6 +7990,7 @@ fn gen_separated_values_with_result<'a>(opts: GenSeparatedValuesParams<'a>, cont
79877990
lines_span,
79887991
allow_inline_multi_line,
79897992
allow_inline_single_line,
7993+
is_known_multi_line: false,
79907994
});
79917995
}
79927996

@@ -9648,6 +9652,7 @@ fn gen_surrounded_by_tokens<'a>(
96489652
lines_span: Some(ir_helpers::LinesSpan { start_line, end_line }),
96499653
allow_inline_multi_line: false,
96509654
allow_inline_single_line: false,
9655+
is_known_multi_line: false,
96519656
});
96529657
}
96539658
}

0 commit comments

Comments
 (0)