LLDB mainline
TaggedASTType.h
Go to the documentation of this file.
1//===-- TaggedASTType.h -----------------------------------------*- C++ -*-===//
2//
3// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4// See https://llvm.org/LICENSE.txt for license information.
5// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6//
7//===----------------------------------------------------------------------===//
8
9#ifndef LLDB_SYMBOL_TAGGEDASTTYPE_H
10#define LLDB_SYMBOL_TAGGEDASTTYPE_H
11
13
14namespace lldb_private {
15
16// For cases in which there are multiple classes of types that are not
17// interchangeable, to allow static type checking.
18template <unsigned int C> class TaggedASTType : public CompilerType {
19public:
20 TaggedASTType(const CompilerType &compiler_type)
21 : CompilerType(compiler_type) {}
22
24 lldb::TypeSystemWP type_system)
25 : CompilerType(type_system, type) {}
26
28
30
31 virtual ~TaggedASTType() = default;
32
35 return *this;
36 }
37};
38
39// Commonly-used tagged types, so code using them is interoperable
42}
43
44#endif
Generic representation of a type in a programming language.
Definition: CompilerType.h:36
const CompilerType & operator=(const CompilerType &rhs)
Operators.
Definition: CompilerType.h:98
TaggedASTType(lldb::opaque_compiler_type_t type, lldb::TypeSystemWP type_system)
Definition: TaggedASTType.h:23
TaggedASTType< C > & operator=(const TaggedASTType< C > &tw)
Definition: TaggedASTType.h:33
TaggedASTType(const TaggedASTType< C > &tw)
Definition: TaggedASTType.h:27
TaggedASTType(const CompilerType &compiler_type)
Definition: TaggedASTType.h:20
virtual ~TaggedASTType()=default
A class that represents a running process on the host machine.
Definition: SBAttachInfo.h:14
TaggedASTType< 0 > TypeFromParser
Definition: TaggedASTType.h:40
TaggedASTType< 1 > TypeFromUser
Definition: TaggedASTType.h:41
void * opaque_compiler_type_t
Definition: lldb-types.h:87
std::weak_ptr< lldb_private::TypeSystem > TypeSystemWP
Definition: lldb-forward.h:459