class Tapioca::Gem::Pipeline

def skip_constant?(name, constant)

: (String name, top constant) -> bool
@without_runtime
def skip_constant?(name, constant)
  return true if name.strip.empty?
  return true if name.start_with?("#<")
  return true if name.downcase == name
  return true if alias_namespaced?(name)
  return true if T::Enum === constant # T::Enum instances are defined via `compile_enums`
  false
end