rubyx-debugger/app/main/models/block_model.rb
2015-07-17 15:14:41 +03:00

14 lines
238 B
Ruby

# represent a block and hold the actual instance (as transient)
class BlockModel < Volt::Model
field :name
attr_accessor :block
def initialize(b)
super()
@block = b
self.name = b.nil? ? 'undefined' : b.name
end
end