Sha256: 3f18753acfeefea0355ad5b39f000531d3a49b8ff5f0ce0918031c51ce6ca77c

Contents?: true

Size: 306 Bytes

Versions: 2

Compression:

Stored size: 306 Bytes

Contents

class AbstractSyntaxTreeKit
  class Node
    class OP_CDECL < Node
      attr_reader :namespace, :operator, :value

      def initialize(node:, namespace:, operator:, value:)
        super(node)
        @namespace = namespace
        @operator = operator
        @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_cdecl.rb
astkit-0.1.0 lib/astkit/node/op_cdecl.rb