Skip to content

Commit 797d13d

Browse files
hugoclrdhugo-stacks
authored andcommitted
--wip-- [skip ci]
1 parent 33eb23d commit 797d13d

File tree

3 files changed

+60
-50
lines changed

3 files changed

+60
-50
lines changed

Cargo.lock

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

components/ts-to-clar/Cargo.toml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -8,14 +8,14 @@ license = "GPL-3.0"
88
[dependencies]
99
anyhow = "1.0.98"
1010

11-
oxc_allocator = "0.82"
12-
oxc_ast = { version = "0.82" }
13-
oxc_ast_visit = "0.82"
14-
oxc_parser = "0.82"
15-
oxc_span = "0.82"
16-
oxc_syntax = "0.82"
17-
oxc_traverse = { version = "0.82" }
18-
oxc_semantic = "0.82"
11+
oxc_allocator = "0.87"
12+
oxc_ast = { version = "0.87" }
13+
oxc_ast_visit = "0.87"
14+
oxc_parser = "0.87"
15+
oxc_span = "0.87"
16+
oxc_syntax = "0.87"
17+
oxc_traverse = { version = "0.87" }
18+
oxc_semantic = "0.87"
1919

2020
clarity = { workspace = true }
2121

components/ts-to-clar/src/expression_converter.rs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -323,8 +323,8 @@ impl<'a> Traverse<'a, ConverterState<'a>> for StatementConverter<'a> {
323323

324324
fn enter_expression(
325325
&mut self,
326-
_node: &mut Expression<'a>,
327-
_ctx: &mut oxc_traverse::TraverseCtx<'a, ConverterState<'a>>,
326+
node: &mut Expression<'a>,
327+
ctx: &mut oxc_traverse::TraverseCtx<'a, ConverterState<'a>>,
328328
) {
329329
// add debugging here if needed
330330
}
@@ -627,7 +627,7 @@ impl<'a> Traverse<'a, ConverterState<'a>> for StatementConverter<'a> {
627627

628628
fn enter_object_expression(
629629
&mut self,
630-
_node: &mut ast::ObjectExpression<'a>,
630+
node: &mut ast::ObjectExpression<'a>,
631631
_ctx: &mut oxc_traverse::TraverseCtx<'a, ConverterState<'a>>,
632632
) {
633633
self.lists_stack.push(PreSymbolicExpression::tuple(vec![]));

0 commit comments

Comments
 (0)