Guest User

Untitled

a guest
Oct 21st, 2017
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.35 KB | None | 0 0
  1. Element:
  2. | STRING LBRACK PropertyList RBRACK { Element($1, $3) }
  3. | PREFIXEDSTRING LBRACK PropertyList RBRACK { Element($1, $3) }
  4.  
  5. Property:
  6. | STRING COLON STRING { Property($1, $3) }
  7. | STRING COLON SPECIALSTRING { Property($1, $3) }
  8.  
  9. PropertyList:
  10. | Property { [$1] }
  11. | Property SEMICOLON { [$1] }
  12. | Property SEMICOLON PropertyList { $1::$3 }
Add Comment
Please, Sign In to add comment