Sha256: 31a1cd3e03f653874a2a5a059f4ec75d8d4da05a380c6309fe6aac0dced43811
Contents?: true
Size: 526 Bytes
Versions: 69
Compression:
Stored size: 526 Bytes
Contents
# -*- coding: utf-8 -*- module RubyToBlock module Block class MotionChangeXBy < CharacterMethodCall blocknize '^\s*' + CHAR_RE + 'x\s*\+=\s*(\S+)\s*$', statement: true, inline: true 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) process_value_string(context, block, md2[2], 'X') true end end end end
Version data entries
69 entries across 69 versions & 1 rubygems