Created
April 2, 2016 21:09
-
-
Save jimchan3301/705b4f9c45680ad60cec1760bcb2f6e6 to your computer and use it in GitHub Desktop.
Parse svn info text into js object.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
%{ | |
var table = {} | |
%} | |
%lex | |
%% | |
\n return 'NEWLINE' | |
": " return 'SEP' | |
[\w ]+ return 'WORDS' | |
[\w\.\/:\(\)\\^\-\+, ]+ return 'TEXT' | |
<<EOF>> return 'EOF' | |
. return 'INVALID' | |
/lex | |
%ebnf | |
%% | |
exp | |
: pair* EOF { return table } | |
; | |
pair | |
: WORDS SEP text -> table[$1] = $3 | |
| pair NEWLINE pair | |
; | |
text | |
: (TEXT | WORDS) + -> $$.join('') | |
; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment