rubyx-debugger/lib/block_view.rb
2015-08-22 18:37:42 +02:00

13 lines
188 B
Ruby

class BlockView < ElementView
def initialize block
@block = block
end
attr_reader :block
def draw
@element = div("div") << div("span.bright" , @block.name )
end
end