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

Commit

Permalink
Parse strings as 'foo'
Browse files Browse the repository at this point in the history
  • Loading branch information
DeLaGuardo committed Aug 28, 2018
1 parent 353a1c9 commit ad2502a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/axel_f/core.cljc
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ ARRAY_EXPR ::= <opening-curly-bracket> ( EXPR {<comma> EXPR} )? <c
ERROR ::= #'#N/A|#VALUE!|#REF!|#DIV/0!|#NUM!|#NAME?|#NULL!'
CONST ::= NUMBER | STRING | BOOL
NUMBER ::= #'[0-9]+\\.?[0-9]*(e[0-9]+)?'
STRING ::= #'\"[^\"]*\"'
STRING ::= #'\"[^\"]*\"' | #\"'[^']*'\"
BOOL ::= #'TRUE|FALSE|True|False|true|false'
FNCALL ::= FN <opening-parenthesis> ARGUMENTS <closing-parenthesis>
FN ::= " (-> functions/functions-map
Expand Down

0 comments on commit ad2502a

Please sign in to comment.