We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0406b9d commit 50ad2cfCopy full SHA for 50ad2cf
src/reader.rs
@@ -82,7 +82,7 @@ fn cons_str(head: char, tail: &str) -> String {
82
/// - `*`,
83
/// - `!`,
84
fn is_identifier_char(chr: char) -> bool {
85
- chr.is_alphanumeric() || "|?<>+-_=^%&$*!".contains(chr)
+ chr.is_alphanumeric() || "|?<>+-_=^%&$*!/".contains(chr)
86
}
87
88
/// Returns whether if a character can be in the head of an identifier.
0 commit comments