Skip to content

Commit

Permalink
remove comment
Browse files Browse the repository at this point in the history
  • Loading branch information
dkuku committed Nov 7, 2024
1 parent fbfe4e9 commit 84558bd
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/tokenizer.rs
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,6 @@ fn get_next_token<'a>(
.or_else(|_| get_any_other_char(input))
}
fn get_double_colon_token(input: &str) -> IResult<&str, Token<'_>> {
// Use the tag combinator to match the "::" in the input
tag("::")(input).map(|(input, token)| {
(
input,
Expand Down Expand Up @@ -1087,6 +1086,7 @@ fn get_operator_token(input: &str) -> IResult<&str, Token<'_>> {
tag(">"),
tag("="),
tag("|"),
tag(":"),
tag("-"),
tag("~"),
tag("*"),
Expand All @@ -1096,7 +1096,6 @@ fn get_operator_token(input: &str) -> IResult<&str, Token<'_>> {
tag("?"),
tag("#"),
tag("/"),
tag(":"),
));

map(
Expand Down

0 comments on commit 84558bd

Please sign in to comment.