# File src/Element.rb, line 44 def initialize(name, bindings, attributes) @name = name @attributes = attributes @bindings = {} defaultBindings() bindings.each do |key,val| @bindings[key]=val end @children = [] end