Sha256: 1089863cde9d8046dbef87470bf4452b8f19af2c24ffa24cb3eb29315b9eb9aa

Contents?: true

Size: 185 Bytes

Versions: 2

Compression:

Stored size: 185 Bytes

Contents

class AbstractSyntaxTreeKit
  class Node
    class NIL < Node
      attr_reader :value

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

Version data entries

2 entries across 2 versions & 1 rubygems

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