Advertisement
Guest User

Untitled

a guest
Aug 4th, 2015
184
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.45 KB | None | 0 0
  1. [section1]
  2. identifier1=arbitrary string 1
  3. identifier2=arbitrary string 2
  4.  
  5. [section2]
  6. identifier3=arbitrary string 3
  7. identifier4=arbitrary string 4
  8.  
  9. grammar EDS;
  10.  
  11. file: COMMENT* NEWLINE* section* ;
  12.  
  13. section
  14. : '[' ID ']' NEWLINE ( COMMENT | assign | NEWLINE)* ;
  15.  
  16. assign
  17. : ID STRING;
  18.  
  19. ID : [a-zA-Z0-9_]+ ;
  20.  
  21. STRING
  22. : '=' .*? 'r'? 'n';
  23.  
  24. NEWLINE
  25. : 'r'? 'n' ;
  26.  
  27. WS : [ t]+ -> skip ;
  28.  
  29. COMMENT
  30. : ';' .*? 'r'? 'n' -> skip ;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement