Sha256: dc92c010273ccdf066a0ebecdf478071b311c5747153265363971ed177d7bab2

Contents?: true

Size: 189 Bytes

Versions: 2

Compression:

Stored size: 189 Bytes

Contents

class AbstractSyntaxTreeKit
  class Node
    class FALSE < Node
      attr_reader :value

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

Version data entries

2 entries across 2 versions & 1 rubygems

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