Sha256: 0d617fa6f157567cf9783d502b99bc47af112f17b2f2fff4d8b6317aa0219e90
Contents?: true
Size: 526 Bytes
Versions: 69
Compression:
Stored size: 526 Bytes
Contents
# -*- coding: utf-8 -*- module RubyToBlock module Block class MotionChangeYBy < CharacterMethodCall blocknize '^\s*' + CHAR_RE + 'y\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], 'Y') true end end end end
Version data entries
69 entries across 69 versions & 1 rubygems