Sha256: f72fc807ddffe6eb835f0030b0ebf56e5ef04401f429349b8f435588e4f5bb4f
Contents?: true
Size: 379 Bytes
Versions: 21
Compression:
Stored size: 379 Bytes
Contents
class Code class Parser class Group < Language def code ::Code::Parser::Code end def opening_parenthesis str("(") end def closing_parenthesis str(")") end def root (opening_parenthesis << code << closing_parenthesis.maybe).aka(:group) | ::Code::Parser::Call end end end end
Version data entries
21 entries across 21 versions & 3 rubygems