Class: BlocklyInterpreter::ConsoleInterpreter::ConsolePrintBlock
- Defined in:
- lib/blockly_interpreter/console_interpreter.rb
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
3 4 5 |
# File 'lib/blockly_interpreter/console_interpreter.rb', line 3 def execute_statement(execution_context) puts values['VALUE'].value(execution_context) end |