Sha256: 2d86e593471f57f37fe14052ba08b84efacb785c8af9da3ce56144a20bf77cb7
Contents?: true
Size: 378 Bytes
Versions: 70
Compression:
Stored size: 378 Bytes
Contents
# frozen_string_literal: true class Code class Parser class Group < Language def code Code end def opening_parenthesis str("(") end def closing_parenthesis str(")") end def root (opening_parenthesis << code << closing_parenthesis.maybe).aka(:group) | Call end end end end
Version data entries
70 entries across 70 versions & 1 rubygems