Sha256: ae678b4225f5ba65e461b1ee561d524cd95e480bb2bf304e51c0a5a878750da6
Contents?: true
Size: 425 Bytes
Versions: 44
Compression:
Stored size: 425 Bytes
Contents
# -*- coding: utf-8 -*- module RubyToBlock module Block class MotionTurnXy < CharacterMethodCall blocknize '^\s*' + CHAR_RE + 'turn_([xy])\s*$', statement: true def self.process_match_data(md, context) md2 = regexp.match(md[type]) add_character_method_call_block(context, md2[1], new(fields: { XY: md2[2] })) true end end end end
Version data entries
44 entries across 44 versions & 1 rubygems