]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - contrib/llvm/tools/lldb/source/Plugins/Language/Go/GoFormatterFunctions.h
MFC r345805: Unify SCSI_STATUS_BUSY retry handling with other cases.
[FreeBSD/FreeBSD.git] / contrib / llvm / tools / lldb / source / Plugins / Language / Go / GoFormatterFunctions.h
1 //===-- GoFormatterFunctions.h-----------------------------------*- C++ -*-===//
2 //
3 //                     The LLVM Compiler Infrastructure
4 //
5 // This file is distributed under the University of Illinois Open Source
6 // License. See LICENSE.TXT for details.
7 //
8 //===----------------------------------------------------------------------===//
9
10 #ifndef liblldb_GoFormatterFunctions_h_
11 #define liblldb_GoFormatterFunctions_h_
12
13 // C Includes
14 #include <stdint.h>
15 #include <time.h>
16
17 // C++ Includes
18 // Other libraries and framework includes
19 #include "clang/AST/ASTContext.h"
20
21 // Project includes
22 #include "lldb/lldb-forward.h"
23
24 #include "lldb/DataFormatters/FormatClasses.h"
25 #include "lldb/DataFormatters/TypeSynthetic.h"
26 #include "lldb/Target/ExecutionContext.h"
27 #include "lldb/Target/ObjCLanguageRuntime.h"
28 #include "lldb/Target/Target.h"
29 #include "lldb/Utility/ConstString.h"
30
31 namespace lldb_private {
32 namespace formatters {
33
34 bool GoStringSummaryProvider(ValueObject &valobj, Stream &stream,
35                              const TypeSummaryOptions &options);
36
37 SyntheticChildrenFrontEnd *
38 GoSliceSyntheticFrontEndCreator(CXXSyntheticChildren *, lldb::ValueObjectSP);
39
40 } // namespace formatters
41 } // namespace lldb_private
42
43 #endif // liblldb_GoFormatterFunctions_h_