class Alki::Assembly::Handler

Attributes

data[R]
elem[R]
key[R]

Public Class Methods

new(elem,data,key=nil) click to toggle source
# File lib/alki/assembly/handler.rb, line 4
def initialize(elem,data,key=nil)
  @elem = elem
  @data = data
  @key = key
end

Public Instance Methods

index() click to toggle source
# File lib/alki/assembly/handler.rb, line 12
def index
  raise NotImplementedError.new("Can't index into this element")
end
output() click to toggle source
# File lib/alki/assembly/handler.rb, line 16
def output
  raise NotImplementedError.new("Can't output this element")
end