Sha256: 392b4c78aa1268a845b1575dca2d7982e07e548b5455acbfd8511f561a9ae51c

Contents?: true

Size: 245 Bytes

Versions: 2

Compression:

Stored size: 245 Bytes

Contents

class AbstractSyntaxTreeKit
  class Node
    class MATCH3 < Node
      attr_reader :regexp, :string

      def initialize(node:, regexp:, string:)
        super(node)
        @regexp = regexp
        @string = string
      end
    end
  end
end

Version data entries

2 entries across 2 versions & 1 rubygems

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