module RuboCop::Ext::RegexpParser::Expression::CharacterSet
Provide ‘CharacterSet` with `begin` and `end` locations.
Public Instance Methods
Source
# 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
Calls superclass method