Sha256: 1d46a0ad21cb09210e95e96ed51b755358a9b4d79decf704d570b7bae60daeef

Contents?: true

Size: 209 Bytes

Versions: 2

Compression:

Stored size: 209 Bytes

Contents

class AbstractSyntaxTreeKit
  class Node
    class UNDEF < Node
      attr_reader :old_name

      def initialize(node:, old_name:)
        super(node)
        @old_name = old_name
      end
    end
  end
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
astkit-0.1.1 lib/astkit/node/undef.rb
astkit-0.1.0 lib/astkit/node/undef.rb