Skip to content

Refactoring, better ability to use cssparser-color as a separate crate. #377

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
wants to merge 13 commits into from
Closed
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Revert "Typo in function call; see earlier function name change commit"
This reverts commit 563b194.
  • Loading branch information
chipnertkj committed Apr 6, 2024
commit ead3a4cc1b0fe001b3039825bd19bfdabfecbbde
2 changes: 1 addition & 1 deletion src/tests.rs
Original file line number Diff line number Diff line change
Expand Up @@ -823,7 +823,7 @@ fn numeric(b: &mut Bencher) {
for _ in 0..1000000 {
let mut input = ParserInput::new("10px");
let mut input = Parser::new(&mut input);
let _ = test::black_box(input.try_next());
let _ = test::black_box(input.next());
}
})
}
Expand Down