Sha256: 96a9073f0232dc7ea35289a82a0b8db5eb7bb428dd7c4655bffbea20a45093c0

Contents?: true

Size: 196 Bytes

Versions: 2

Compression:

Stored size: 196 Bytes

Contents

class AbstractSyntaxTreeKit
  class Node
    class XSTR < Node
      attr_reader :value

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

Version data entries

2 entries across 2 versions & 1 rubygems

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