class Syobocal::Comment::Element::Blank

Public Class Methods

match?(line) click to toggle source
# File lib/syobocal/comment/element/blank.rb, line 15
def self.match?(line)
  line.match(/\A\s*\Z/)
end
new() click to toggle source
# File lib/syobocal/comment/element/blank.rb, line 5
def initialize; end
parse(line) click to toggle source
# File lib/syobocal/comment/element/blank.rb, line 19
def self.parse(line)
  Element::Blank.new
end

Public Instance Methods

==(other) click to toggle source
# File lib/syobocal/comment/element/blank.rb, line 7
def ==(other)
  other.instance_of?(self.class)
end
inner_text() click to toggle source
# File lib/syobocal/comment/element/blank.rb, line 11
def inner_text
  ""
end