Sha256: abb4d01d7adf77fce5c9250b38d8380812753c67b71bd248a932a0ad855c675a
Contents?: true
Size: 532 Bytes
Versions: 69
Compression:
Stored size: 532 Bytes
Contents
# -*- coding: utf-8 -*- module RubyToBlock module Block class MotionRotateLeft < CharacterMethodCall blocknize '^\s*' + CHAR_RE + 'rotate\(\-(\d+)\)\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], :ANGLE) true end end end end
Version data entries
69 entries across 69 versions & 1 rubygems