diff options
| -rw-r--r-- | racket/circuits/lexer.rkt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/racket/circuits/lexer.rkt b/racket/circuits/lexer.rkt index 5d3dc82..bc644de 100644 --- a/racket/circuits/lexer.rkt +++ b/racket/circuits/lexer.rkt @@ -6,7 +6,7 @@ (define-empty-tokens punct-tokens (LPAREN RPAREN EOF COMMA SEMICOLON LBRACE RBRACE)) (define-empty-tokens keyword-tokens (WIRE MODULE)) -(define-lex-abbrev ident-special-char (char-set "_|~+-^&#!")) +(define-lex-abbrev ident-special-char (char-set "_|~+-^&#![]")) ;; Lexer for circuits DSL (define circuits-lexer |
