rubyx-debugger/app/main/controllers/blocks_controller.rb

13 lines
258 B
Ruby
Raw Normal View History

2015-07-31 18:42:34 +02:00
module Main
class BlocksController < Volt::ModelController
def initialize *args
super(*args)
blocks = BlocksModel.new
page._blocks = blocks
@volt_app.interpreter.register_event(:instruction_changed, blocks)
end
end
end