Class: BlocklyInterpreter::CoreBlocks::RepeatTimesBlock
- Defined in:
- lib/blockly_interpreter/core_blocks/repeat_times_block.rb
Defined Under Namespace
Modules: DSLMethods
Instance Attribute Summary
Attributes inherited from Block
#block_type, #comment, #comment_pinned, #fields, #is_shadow, #mutation, #next_block, #statements, #values, #x, #y
Instance Method Summary collapse
Methods inherited from Block
#each_block, #has_comment?, #has_position?, #initialize, #to_dsl, #to_xml, #to_xml_element, #value
Constructor Details
This class inherits a constructor from BlocklyInterpreter::Block
Instance Method Details
#execute_statement(execution_context) ⇒ Object
4 5 6 7 |
# File 'lib/blockly_interpreter/core_blocks/repeat_times_block.rb', line 4 def execute_statement(execution_context) n = values['TIMES'].value(execution_context).to_i n.times { execution_context.execute(statements['DO']) } end |