aboutsummaryrefslogtreecommitdiff
path: root/include/lldb/Expression/ExpressionTypeSystemHelper.h
blob: cb560c9b5a4205b3c9b645da184f59bfed22bb30 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
//===-- ExpressionTypeSystemHelper.h ---------------------------------*- C++ -*-===//
//
//                     The LLVM Compiler Infrastructure
//
// This file is distributed under the University of Illinois Open Source
// License. See LICENSE.TXT for details.
//
//===----------------------------------------------------------------------===//

#ifndef ExpressionTypeSystemHelper_h
#define ExpressionTypeSystemHelper_h

#include "llvm/Support/Casting.h"

namespace lldb_private
{

//----------------------------------------------------------------------
/// @class ExpressionTypeSystemHelper ExpressionTypeSystemHelper.h "lldb/Expression/ExpressionTypeSystemHelper.h"
/// @brief A helper object that the Expression can pass to its ExpressionParser to provide generic information that
/// any type of expression will need to supply.  It's only job is to support dyn_cast so that the expression parser
/// can cast it back to the requisite specific type.
///
//----------------------------------------------------------------------

class ExpressionTypeSystemHelper
{
public:
    enum LLVMCastKind {
        eKindClangHelper,
        eKindSwiftHelper,
        eKindGoHelper,
        kNumKinds
    };

    LLVMCastKind getKind() const { return m_kind; }

    ExpressionTypeSystemHelper (LLVMCastKind kind) :
        m_kind(kind)
    {
    }
    
    ~ExpressionTypeSystemHelper () {}

protected:
    LLVMCastKind m_kind;
};




} // namespace lldb_private

#endif /* ExpressionTypeSystemHelper_h */