class Volt::HtmlNode

Public Class Methods

new(html) click to toggle source
# File lib/volt/page/targets/binding_document/html_node.rb, line 5
def initialize(html)
  @html = html
end

Public Instance Methods

inspect() click to toggle source
# File lib/volt/page/targets/binding_document/html_node.rb, line 13
def inspect
  "<HtmlNode #{@html.inspect}>"
end
to_html() click to toggle source
# File lib/volt/page/targets/binding_document/html_node.rb, line 9
def to_html
  @html
end