Skip to content

Instantly share code, notes, and snippets.

@jimchan3301
Created April 2, 2016 21:09
Show Gist options
  • Save jimchan3301/705b4f9c45680ad60cec1760bcb2f6e6 to your computer and use it in GitHub Desktop.
Save jimchan3301/705b4f9c45680ad60cec1760bcb2f6e6 to your computer and use it in GitHub Desktop.
Parse svn info text into js object.
%{
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