class Bytewise::Ast::Node

This is the most basic class It is designed to be extended by tags, chunk, body, blocks, etc.

Attributes

parent[RW]

Public Instance Methods

remove() click to toggle source
# File lib/brace_markup/ast/node.rb, line 17
def remove
  @parent.remove_child(self)
end
render(context) click to toggle source

@param context ::Bytewise::Context

# File lib/brace_markup/ast/node.rb, line 13
def render(context)

end