Sha256: 4c0d83dc97e480b8a07ca17f8bb617a85833859f8a3ffa81bc449d814d7470fc

Contents?: true

Size: 242 Bytes

Versions: 2

Compression:

Stored size: 242 Bytes

Contents

class AbstractSyntaxTreeKit
  class Node
    class FOR < Node
      attr_reader :receiver, :body

      def initialize(node:, receiver:, body:)
        super(node)
        @receiver = receiver
        @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/for.rb
astkit-0.1.0 lib/astkit/node/for.rb