mirror of
https://github.com/ParkerTenBroeck/automata.git
synced 2026-06-07 05:28:45 -04:00
added example selector, added share button, added saving to local storage, layout change
This commit is contained in:
parent
9dcef68d82
commit
2edc7aca3c
8 changed files with 427 additions and 70 deletions
|
|
@ -96,7 +96,7 @@ fn begin_ident(c: char) -> bool {
|
|||
}
|
||||
|
||||
fn continue_ident(c: char) -> bool {
|
||||
c.is_alphanumeric() || c == '_' || (!c.is_ascii() && !c.is_control() && !c.is_whitespace())
|
||||
c.is_alphanumeric() || c == '_' || c=='\'' || (!c.is_ascii() && !c.is_control() && !c.is_whitespace())
|
||||
}
|
||||
|
||||
impl<'a> std::iter::Iterator for Lexer<'a> {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue