Sha256: f5d6396e6315e287f97bc517d837285c844ee2efcc1bcc1361cde396b9bbcfa8
Contents?: true
Size: 393 Bytes
Versions: 24
Compression:
Stored size: 393 Bytes
Contents
# frozen_string_literal: true module Mutant class Expression class Descendants < self include Anima.new(:const_name) REGEXP = /\Adescendants:(?<const_name>.+)\z/.freeze def syntax "descendants:#{const_name}" end def matcher Matcher::Descendants.new(const_name: const_name) end end # Descendants end # Expression end # Mutant
Version data entries
24 entries across 24 versions & 1 rubygems