Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
racc / sample / conflict.y
Size: Mime:
# $Id$
#
# Example of conflicted grammer.
# This grammer contains 1 Shift/Reduce conflict and 1 Reduce/Reduce conflict.

class A
rule
  target : outer

  outer  :
         | outer inner

  inner  :
         | inner ITEM
end