class RubyLsp::ERBDocument::ERBScanner

def scan

: -> void
def scan
  while @current_pos < @source.length
    scan_char
    @current_pos += 1
  end
end