class Ldpath::Parser

Public Instance Methods

group(atom) click to toggle source
# File lib/ldpath/parser.rb, line 436
def group(atom)
  str("(") >> wsp? >>
    atom >> wsp? >>
    str(")")
end