Sha256: 408b5dce0e8bcfa2e6b56fb6c09f7c4c9d6c4425c27d138f15835f6aa1ad17bc

Contents?: true

Size: 192 Bytes

Versions: 2

Compression:

Stored size: 192 Bytes

Contents

class AbstractSyntaxTreeKit
  class Node
    class ONCE < Node
      attr_reader :body

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

Version data entries

2 entries across 2 versions & 1 rubygems

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