File: anchor.rb

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

module Regexp::Syntax
  module Token
    module Anchor
      Basic       = %i[bol eol].freeze
      Extended    = Basic + %i[word_boundary nonword_boundary]
      String      = %i[bos eos eos_ob_eol].freeze
      MatchStart  = %i[match_start].freeze

      All = Extended + String + MatchStart
      Type = :anchor
    end

    Map[Anchor::Type] = Anchor::All
  end
end