Sha256: 9b7e5332f57b28c8f957bc525f48c7b61a0b97b1277a4651f004bdad9191ec0e
Contents?: true
Size: 606 Bytes
Versions: 50
Compression:
Stored size: 606 Bytes
Contents
# -*- coding: utf-8 -*- module RubyToBlock module Block class MotionGoToCharacter < CharacterMethodCall blocknize '^\s*' + CHAR_RE + 'go_to\(' + CHAR_NAME_RE + '\)\s*$', statement: true def self.process_match_data(md, context) md2 = regexp.match(md[type]) name = md2[2] name.strip! c = context.characters[name] return false unless c block = new(fields: { CHAR: name }) _, context.current_block = *add_child_or_create_character_new_block(context, md2[1], block) true end end end end
Version data entries
50 entries across 50 versions & 1 rubygems