Skip to content

Commit

Permalink
random change
Browse files Browse the repository at this point in the history
  • Loading branch information
jiahanxie353 committed Aug 8, 2024
1 parent 269ec2c commit 4dcea02
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions calyx-frontend/src/syntax.pest
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,6 @@ decimal = @{ ASCII_HEX_DIGIT+ }
octal = @{ ASCII_HEX_DIGIT+ }
hex = @{ ASCII_HEX_DIGIT+ }
float = @{ ASCII_DIGIT+ ~ "." ~ ASCII_DIGIT+ }

ieee754_const = { "ieee754_const(" ~ float ~ ")" }

// `$` creates a compound rule which ignores whitespace while allowing for
Expand Down Expand Up @@ -378,4 +377,4 @@ control = {
any_char = { ANY }
metadata_char = ${ !"}#" ~ any_char }

metadata = ${ ^"metadata" ~ WHITESPACE* ~ "#{" ~ metadata_char* ~ "}#"}
metadata = ${ ^"metadata" ~ WHITESPACE* ~ "#{" ~ metadata_char* ~ "}#"}

0 comments on commit 4dcea02

Please sign in to comment.