module BulletTrain::Themes

def self.theme_invocation_path_for(path)

def self.theme_invocation_path_for(path)
  # Themes only support `<%= render 'shared/box' ... %>` style calls to `render`, so check `path` is a string first.
  if path.is_a?(String) && (pattern = INVOCATION_PATTERNS.find { _1.match? path })
    path.remove(pattern)
  end
end