Skip to content

Commit

Permalink
be more lax in parsing; bump 0.0.25
Browse files Browse the repository at this point in the history
  • Loading branch information
memoryleak47 committed Nov 4, 2024
1 parent 1ef30a7 commit f18c3fb
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "slotted-egraphs"
version = "0.0.24"
version = "0.0.25"
edition = "2021"
description = "E-Graphs with name binding"
license = "Apache-2.0 OR MIT"
Expand Down
2 changes: 1 addition & 1 deletion src/parse.rs
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ enum Token {

fn ident_char(c: char) -> bool {
if c.is_whitespace() { return false; }
if "()[]$:=?".contains(c) { return false; }
if "()[]".contains(c) { return false; }
true
}

Expand Down

0 comments on commit f18c3fb

Please sign in to comment.