Sha256: ffb0d4783ad6f5501a42ead552b1b0e170ac0e42c228864468d727cb6c085d25
Contents?: true
Size: 721 Bytes
Versions: 69
Compression:
Stored size: 721 Bytes
Contents
module RubyToBlock module Block class CharacterMethodCall < Base include CharacterOperation def self.process_match_data(md, context) md2 = regexp.match(md[type]) block = new _, context.current_block = *add_child_or_create_character_new_block(context, md2[1], block) true end def self.add_character_method_call_block(context, name, block, values = {}) _, context.current_block = *add_child_or_create_character_new_block(context, name, block) values.each do |k, v| process_value_string(context, block, v, k) end block end end end end
Version data entries
69 entries across 69 versions & 1 rubygems