Sha256: 71a02dee68d4dd1b7aa63dda3eb250b9185c8abf518ac79ded85d37fa428d733

Contents?: true

Size: 287 Bytes

Versions: 2

Compression:

Stored size: 287 Bytes

Contents

class AbstractSyntaxTreeKit
  class Node
    class CLASS < Node
      attr_reader :path, :superclass, :body

      def initialize(node:, path:, superclass:, body:)
        super(node)
        @path = path
        @superclass = superclass
        @body = body
      end
    end
  end
end

Version data entries

2 entries across 2 versions & 1 rubygems

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