This website works better with JavaScript.
Home
Explore
Help
Sign In
piumarta
/
javascrypt
mirror of
https://github.com/mtardy/javascrypt.git
Watch
1
Star
0
Fork
0
Code
Issues
0
Releases
1
Wiki
Activity
Browse Source
Fix parser 'blank' rule
pull/7/head
mtardy
4 years ago
parent
8a245b3f00
commit
d568212a6c
1 changed files
with
1 additions
and
1 deletions
Unified View
Diff Options
Show Stats
Download Patch File
Download Diff File
+1
-1
parse.leg
+ 1
- 1
parse.leg
View File
@ -674,7 +674,7 @@ makeMap= { $$ = makeMap() }
- = (blank | comment)*
- = (blank | comment)*
blank =
[ \t\n\r]
blank =
space | eol
space = [ \t]
space = [ \t]
eol = "\n""\r"* | "\r""\n"*
eol = "\n""\r"* | "\r""\n"*
Write
Preview
Loading…
Cancel
Save