class RegexpTree::Special

Public Class Methods

new(str) click to toggle source
# File lib/regexptree.rb, line 467
def initialize(str)
  @str = str
end

Public Instance Methods

case_insensitive?() click to toggle source
# File lib/regexptree.rb, line 471
def case_insensitive?
  true
end
downcase() click to toggle source
# File lib/regexptree.rb, line 479
def downcase
  self
end
multiline_insensitive?() click to toggle source
# File lib/regexptree.rb, line 475
def multiline_insensitive?
  true
end
pretty_format(out) click to toggle source
# File lib/regexptree.rb, line 483
def pretty_format(out)
  out.text @str
end