Sha256: ce736945967eaac45621abacbb1fbc2063569c4519d269296194234d8029edad

Contents?: true

Size: 341 Bytes

Versions: 2

Compression:

Stored size: 341 Bytes

Contents

class AbstractSyntaxTreeKit
  class Node
    class OP_ASGN2 < Node
      attr_reader :receiver, :operator, :index, :value

      def initialize(node:, receiver:, operator:, index:, value:)
        super(node)
        @receiver = receiver
        @operator = operator
        @index = index
        @value = value
      end
    end
  end
end

Version data entries

2 entries across 2 versions & 1 rubygems

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