Skip to content
Toggle navigation
Toggle navigation
This project
Loading...
Sign in
brainfood
/
videojs-contrib-hls
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Graphs
Network
Create a new issue
Commits
Issue Boards
Files
Commits
Network
Compare
Branches
Tags
c0c02539
authored
2013-12-11 13:40:03 -0500
by
Gary Katsevman
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
no need for enumeratedString rule
1 parent
37b01102
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
0 additions
and
7 deletions
src/m3u8/m3u8.pegjs
src/m3u8/m3u8.pegjs
View file @
c0c0253
...
...
@@ -241,17 +241,10 @@ hexDigit
/***** Text *****/
enumeratedString
= chars:enumeratedChar+ _ { return chars.join('') }
quotedString
= '"' '"' _ { return ""; }
/ '"' chars:quotedChar+ '"' _ { return chars.join(''); }
enumeratedChar
= [^'" \n\t\r]
/ [a-zA-Z0-9]
quotedChar
= [^\r\n"]
/ char:char
...
...
Please
register
or
sign in
to post a comment