Skip to content

Commit

Permalink
cnescatlab#52 cnescatlab#137 Updated the COM.TYPE.Expression rule: th…
Browse files Browse the repository at this point in the history
…e automatic tests were

failing after introducing FNAME. The issue was solved by removing \space
from the SPACE token.
  • Loading branch information
brigittehuynh committed Jul 23, 2018
1 parent a5051b0 commit 645ce6d
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ COMMENT_WORD = \#
FUNCTION = "function"
FUNCT = {FNAME}{SPACE}*[\(]{SPACE}*[\)]
FNAME = [a-zA-Z0-9\.\!\-\_\@\?\+]+
SPACE = [\ \r\t\f\space]
SPACE = [\ \r\t\f]
VAR = [a-zA-Z][a-zA-Z0-9\_]*
STRING = \'[^\']*\' | \"[^\"]*\"
INT = [0-9]+
Expand Down

0 comments on commit 645ce6d

Please # to comment.