class EZML::Parser::Line

@private

Public Instance Methods

strip!(from) click to toggle source
# File lib/ezml/parser.rb, line 189
def strip!(from)
  self.text = text[from..-1]
  self.text.lstrip!
  self
end
tabs() click to toggle source

@private

# File lib/ezml/parser.rb, line 185
def tabs
  @tabs ||= parser.compute_tabs(self)
end