Flowchart parsing issue with CRLF #894

This commit is contained in:
Marc Faber
2019-09-27 01:05:25 +02:00
parent 490d42fce1
commit 095233e6cf
2 changed files with 14 additions and 1 deletions

View File

@@ -169,7 +169,7 @@
"{" return 'DIAMOND_START'
"}" return 'DIAMOND_STOP'
"\"" return 'QUOTE';
\n+ return 'NEWLINE';
(\r|\n|\r\n)+ return 'NEWLINE';
\s return 'SPACE';
<<EOF>> return 'EOF';