Module: RuboCop::Ext::RegexpParser::Expression::CharacterSet
- Defined in:
- lib/rubocop/ext/regexp_parser.rb
Overview
Provide ‘CharacterSet` with `begin` and `end` locations.
Instance Method Summary collapse
Instance Method Details
#build_location ⇒ Object
63 64 65 66 67 68 69 70 |
# File 'lib/rubocop/ext/regexp_parser.rb', line 63 def build_location h = super body = h[:body] h.merge!( begin_l: body.with(end_pos: body.begin_pos + 1), end_l: body.with(begin_pos: body.end_pos - 1) ) end |