Skip to content

Commit

Permalink
Fix test
Browse files Browse the repository at this point in the history
  • Loading branch information
JonasWanke committed Feb 3, 2023
1 parent 7b0faa6 commit 734316d
Showing 1 changed file with 2 additions and 8 deletions.
10 changes: 2 additions & 8 deletions compiler/src/compiler/string_to_rcst.rs
Expand Up @@ -2440,10 +2440,7 @@ mod parse {
comma: None,
},
],
closing_parenthesis: Box::new(Rcst::TrailingWhitespace {
child: Box::new(Rcst::OpeningParenthesis),
whitespace: vec![Rcst::Whitespace(" ".to_string())],
}),
closing_parenthesis: Box::new(Rcst::ClosingParenthesis),
}),
whitespace: vec![Rcst::Whitespace(" ".to_string())],
}),
Expand All @@ -2470,10 +2467,7 @@ mod parse {
comma: None,
},
],
closing_parenthesis: Box::new(Rcst::TrailingWhitespace {
child: Box::new(Rcst::OpeningParenthesis),
whitespace: vec![Rcst::Whitespace(" ".to_string())],
}),
closing_parenthesis: Box::new(Rcst::ClosingParenthesis),
},
)],
},
Expand Down

1 comment on commit 734316d

@jwbot
Copy link
Collaborator

@jwbot jwbot commented on 734316d Feb 3, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Compiler

Benchmark suite Current: 734316d Previous: 8030dde Ratio
Time: Compiler/hello_world 25198122 ns/iter (± 1074958) 24109145 ns/iter (± 349937) 1.05
Time: Compiler/fibonacci 635070020 ns/iter (± 7779128) 538104078 ns/iter (± 5033559) 1.18
Time: VM Runtime/hello_world 20137107 ns/iter (± 388246) 19013214 ns/iter (± 343731) 1.06
Time: VM Runtime/fibonacci/15 235260136 ns/iter (± 1159279) 202563219 ns/iter (± 1162003) 1.16

This comment was automatically generated by workflow using github-action-benchmark.

Please sign in to comment.