Skip to content
This repository was archived by the owner on Oct 7, 2024. It is now read-only.

Commit ad2502a

Browse files
committed
Parse strings as 'foo'
1 parent 353a1c9 commit ad2502a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/axel_f/core.cljc

+1-1
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ ARRAY_EXPR ::= <opening-curly-bracket> ( EXPR {<comma> EXPR} )? <c
3838
ERROR ::= #'#N/A|#VALUE!|#REF!|#DIV/0!|#NUM!|#NAME?|#NULL!'
3939
CONST ::= NUMBER | STRING | BOOL
4040
NUMBER ::= #'[0-9]+\\.?[0-9]*(e[0-9]+)?'
41-
STRING ::= #'\"[^\"]*\"'
41+
STRING ::= #'\"[^\"]*\"' | #\"'[^']*'\"
4242
BOOL ::= #'TRUE|FALSE|True|False|true|false'
4343
FNCALL ::= FN <opening-parenthesis> ARGUMENTS <closing-parenthesis>
4444
FN ::= " (-> functions/functions-map

0 commit comments

Comments
 (0)