class Regexp::Expression::Group::Passive
Attributes
implicit[W]
Public Instance Methods
implicit?()
click to toggle source
# File lib/regexp_parser/expression/classes/group.rb, line 24 def implicit? @implicit ||= false end
to_s(format = :full)
click to toggle source
Calls superclass method
Regexp::Expression::Group::Base#to_s
# File lib/regexp_parser/expression/classes/group.rb, line 16 def to_s(format = :full) if implicit? "#{expressions.join}#{quantifier_affix(format)}" else super end end