chromium/v8/src/torque/type-oracle.cc

// Copyright 2018 the V8 project authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#include "src/torque/type-oracle.h"

#include <optional>

#include "src/torque/type-visitor.h"
#include "src/torque/types.h"

namespace v8::internal::torque {

// static
const std::vector<std::unique_ptr<AggregateType>>&
TypeOracle::GetAggregateTypes() {}

// static
const std::vector<std::unique_ptr<BitFieldStructType>>&
TypeOracle::GetBitFieldStructTypes() {}

// static
void TypeOracle::FinalizeAggregateTypes() {}

// static
const Type* TypeOracle::GetGenericTypeInstance(GenericType* generic_type,
                                               TypeVector arg_types) {}

// static
Namespace* TypeOracle::CreateGenericTypeInstantiationNamespace() {}

// static
std::vector<const ClassType*> TypeOracle::GetClasses() {}

std::optional<const Type*> TypeOracle::MatchReferenceGeneric(
    const Type* reference_type, bool* is_const) {}

}  // namespace v8::internal::torque