Sha256: 41e0602958a4d32ae1e02f1fcf46d86f8023957a1dee99fcb39ce30895ca2cbf

Contents?: true

Size: 259 Bytes

Versions: 2

Compression:

Stored size: 259 Bytes

Contents

class AbstractSyntaxTreeKit
  class Node
    class MASGN < Node
      attr_reader :rhs, :lhs, :splat

      def initialize(node:, rhs:, lhs:, splat:)
        super(node)
        @rhs = rhs
        @lhs = lhs
        @splat = splat
      end
    end
  end
end

Version data entries

2 entries across 2 versions & 1 rubygems

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