Sha256: 4b9021418bda9d598c7a88f40b33feed09e0f4497e3edc8f61780e8c39555f2b

Contents?: true

Size: 195 Bytes

Versions: 2

Compression:

Stored size: 195 Bytes

Contents

class AbstractSyntaxTreeKit
  class Node
    class STR < 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/str.rb
astkit-0.1.0 lib/astkit/node/str.rb