Sha256: 8656034ba383e8a8629cbe1f2caf11e4ea94f0dddb7a8e527a3b674a047f70d9

Contents?: true

Size: 311 Bytes

Versions: 2

Compression:

Stored size: 311 Bytes

Contents

class AbstractSyntaxTreeKit
  class Node
    class SCOPE < Node
      attr_reader :local_table, :arguments, :body

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