Sha256: 3ca4021d6fc62cd7170be333d65ff534bec27aa0ababb0a9c0d7a4fc21aaf6eb

Contents?: true

Size: 209 Bytes

Versions: 2

Compression:

Stored size: 209 Bytes

Contents

class AbstractSyntaxTreeKit
  class Node
    class ARRAY < Node
      attr_reader :elements

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

Version data entries

2 entries across 2 versions & 1 rubygems

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