aboutsummaryrefslogtreecommitdiff
path: root/include/lldb/Expression/ExpressionSourceCode.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/lldb/Expression/ExpressionSourceCode.h')
-rw-r--r--include/lldb/Expression/ExpressionSourceCode.h78
1 files changed, 78 insertions, 0 deletions
diff --git a/include/lldb/Expression/ExpressionSourceCode.h b/include/lldb/Expression/ExpressionSourceCode.h
new file mode 100644
index 000000000000..be1014ae3047
--- /dev/null
+++ b/include/lldb/Expression/ExpressionSourceCode.h
@@ -0,0 +1,78 @@
+//===-- ExpressionSourceCode.h ----------------------------------*- C++ -*-===//
+//
+// The LLVM Compiler Infrastructure
+//
+// This file is distributed under the University of Illinois Open Source
+// License. See LICENSE.TXT for details.
+//
+//===----------------------------------------------------------------------===//
+
+#ifndef liblldb_ExpressionSourceCode_h
+#define liblldb_ExpressionSourceCode_h
+
+#include "lldb/lldb-enumerations.h"
+
+#include <string>
+
+namespace lldb_private
+{
+
+class ExpressionSourceCode
+{
+public:
+ static const char * g_expression_prefix;
+
+ static ExpressionSourceCode *CreateWrapped (const char *prefix,
+ const char *body)
+ {
+ return new ExpressionSourceCode ("$__lldb_expr",
+ prefix,
+ body,
+ true);
+ }
+
+ static ExpressionSourceCode *CreateUnwrapped (const char *name,
+ const char *body)
+ {
+ return new ExpressionSourceCode (name,
+ "",
+ body,
+ false);
+ }
+
+ bool NeedsWrapping () const
+ {
+ return m_wrap;
+ }
+
+ const char *GetName () const
+ {
+ return m_name.c_str();
+ }
+
+ bool GetText (std::string &text,
+ lldb::LanguageType wrapping_language,
+ bool const_object,
+ bool static_method) const;
+
+private:
+ ExpressionSourceCode (const char *name,
+ const char *prefix,
+ const char *body,
+ bool wrap) :
+ m_name(name),
+ m_prefix(prefix),
+ m_body(body),
+ m_wrap(wrap)
+ {
+ }
+
+ std::string m_name;
+ std::string m_prefix;
+ std::string m_body;
+ bool m_wrap;
+};
+
+} // namespace lldb_private
+
+#endif