Class: Regexp::Syntax::Base

Inherits:
Object
  • Object
show all
Defined in:
lib/regexp_parser/syntax.rb

Overview

A lookup map of supported types and tokens in a given syntax

Direct Known Subclasses

Any, Ruby::V186

Instance Method Summary collapse

Constructor Details

#initializeBase

Returns a new instance of Base.



115
116
117
118
119
120
# File 'lib/regexp_parser/syntax.rb', line 115

def initialize
  @implements = {}

  implements Token::Literal::Type,   Token::Literal::All
  implements Token::FreeSpace::Type, Token::FreeSpace::All
end

Instance Method Details

#excludes(type, tokens) ⇒ Object

removes



135
136
137
138
139
140
141
142
143
144
145
146
147
148
# File 'lib/regexp_parser/syntax.rb', line 135

def excludes(type, tokens)
  if tokens
    tokens = [tokens] unless tokens.is_a?(Array)
  end

  if @implements[type]
    if tokens
      @implements[type] = @implements[type] - tokens
      @implements[type] = nil if @implements[type].empty?
    else
      @implements[type] = nil
    end
  end
end

#implementationObject



122
123
124
# File 'lib/regexp_parser/syntax.rb', line 122

def implementation
  @implements
end

#implements(type, tokens) ⇒ Object



126
127
128
129
130
131
132
# File 'lib/regexp_parser/syntax.rb', line 126

def implements(type, tokens)
  if @implements[type]
    @implements[type] = (@implements[type] + tokens).uniq
  else
    @implements[type] = tokens
  end
end

#implements!(type, token) ⇒ Object Also known as: check!



156
157
158
159
# File 'lib/regexp_parser/syntax.rb', line 156

def implements!(type, token)
  raise NotImplementedError.new(self, type, token) unless
    implements?(type, token)
end

#implements?(type, token) ⇒ Boolean Also known as: check?

Returns:

  • (Boolean)


150
151
152
153
# File 'lib/regexp_parser/syntax.rb', line 150

def implements?(type, token)
  return true if @implements[type] and @implements[type].include?(token)
  false
end

#normalize(type, token) ⇒ Object



162
163
164
165
166
167
168
169
170
171
# File 'lib/regexp_parser/syntax.rb', line 162

def normalize(type, token)
  case type
  when :group
    normalize_group(type, token)
  when :backref
    normalize_backref(type, token)
  else
    [type, token]
  end
end

#normalize_backref(type, token) ⇒ Object



182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
# File 'lib/regexp_parser/syntax.rb', line 182

def normalize_backref(type, token)
  case token
  when :name_ref_ab, :name_ref_sq
    [:backref, :name_ref]
  when :name_call_ab, :name_call_sq
    [:backref, :name_call]
  when :name_nest_ref_ab, :name_nest_ref_sq
    [:backref, :name_nest_ref]
  when :number_ref_ab, :number_ref_sq
    [:backref, :number_ref]
  when :number_call_ab, :number_call_sq
    [:backref, :number_call]
  when :number_rel_ref_ab, :number_rel_ref_sq
    [:backref, :number_rel_ref]
  when :number_rel_call_ab, :number_rel_call_sq
    [:backref, :number_rel_call]
  when :number_nest_ref_ab, :number_nest_ref_sq
    [:backref, :number_nest_ref]
  else
    [type, token]
  end
end

#normalize_group(type, token) ⇒ Object



173
174
175
176
177
178
179
180
# File 'lib/regexp_parser/syntax.rb', line 173

def normalize_group(type, token)
  case token
  when :named_ab, :named_sq
    [:group, :named]
  else
    [type, token]
  end
end