Sha256: 0e832d0beabb5b055b2b2c04c1d640e6c2d92528f1fde6ca31b3bdac512685e6
Contents?: true
Size: 317 Bytes
Versions: 10
Compression:
Stored size: 317 Bytes
Contents
require_relative 'code_context' module Reek module Context # # A context wrapper for method calls found in a syntax tree. # class SendContext < CodeContext attr_reader :name def initialize(context, exp, name) @name = name super context, exp end end end end
Version data entries
10 entries across 10 versions & 1 rubygems