Class: OutputStringBlock

Inherits:
BlocklyInterpreter::Block show all
Defined in:
lib/blockly_interpreter/blockly_interpreter_test_helper.rb

Defined Under Namespace

Modules: DSLMethods

Instance Attribute Summary

Attributes inherited from BlocklyInterpreter::Block

#block_type, #comment, #comment_pinned, #fields, #is_shadow, #mutation, #next_block, #statements, #values, #x, #y

Instance Method Summary collapse

Methods inherited from BlocklyInterpreter::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



9
10
11
# File 'lib/blockly_interpreter/blockly_interpreter_test_helper.rb', line 9

def execute_statement(execution_context)
  execution_context.add_content(values['VALUE'].value(execution_context).to_s)
end