File: free_space.rb

package info (click to toggle)
ruby-regexp-parser 2.11.3-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 1,092 kB
  • sloc: ruby: 6,891; makefile: 6; sh: 3
file content (19 lines) | stat: -rw-r--r-- 469 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
# frozen_string_literal: true

module Regexp::Expression
  class FreeSpace < Regexp::Expression::Base
    def quantify(*_args)
      raise Regexp::Parser::Error, 'Can not quantify a free space object'
    end
  end

  class Comment < Regexp::Expression::FreeSpace
  end

  class WhiteSpace < Regexp::Expression::FreeSpace
    def merge(exp)
      warn("#{self.class}##{__method__} is deprecated and will be removed in v3.0.0.")
      text << exp.text
    end
  end
end