class CFA::AppendPlacer

Places the new element at the end of the tree.

Public Instance Methods

new_element(tree) click to toggle source

(see Placer#new_element)

# File lib/cfa/placer.rb, line 28
def new_element(tree)
  res = create_element
  tree.all_data << res

  res
end