global

def correct_block?(body_tokens)

def correct_block?(body_tokens)
  return true if block_locator.body_content_locations.empty?
  content_location = block_locator.body_content_locations.first
  content_location.between?(body_tokens.first.location, body_tokens.last.location)
end