diff options
| author | Jonas Devlieghere <jonas@devlieghere.com> | 2018-11-05 19:34:03 +0000 |
|---|---|---|
| committer | Jonas Devlieghere <jonas@devlieghere.com> | 2018-11-05 19:34:03 +0000 |
| commit | 454057da2a38ab7ead9c40fe2b8d356115399121 (patch) | |
| tree | 5eab5720adf46ee2257f3287518f38b8510414d8 /lldb/source/Plugins/Language/OCaml/OCamlLanguage.h | |
| parent | 0b8c5c9e1330af8e25989e54f3dd50d6404d3ef7 (diff) | |
| download | bcm5719-llvm-454057da2a38ab7ead9c40fe2b8d356115399121.tar.gz bcm5719-llvm-454057da2a38ab7ead9c40fe2b8d356115399121.zip | |
Remove OCaml debugger plugin
In January Davide sent an e-mail to the mailing list to suggest removing
unmaintained language plugins such as Go and Java. The plan was to have
some cool down period to allow users to speak up, however after that the
plugins were never actually removed.
This patch removes the OCaml debugger plugin.
The plugin can be added again in the future if it is mature enough both
in terms of testing and maintenance commitment.
Discussion on the mailing list:
http://lists.llvm.org/pipermail/lldb-dev/2018-January/013171.html
Differential revision: https://reviews.llvm.org/D54060
llvm-svn: 346159
Diffstat (limited to 'lldb/source/Plugins/Language/OCaml/OCamlLanguage.h')
| -rw-r--r-- | lldb/source/Plugins/Language/OCaml/OCamlLanguage.h | 53 |
1 files changed, 0 insertions, 53 deletions
diff --git a/lldb/source/Plugins/Language/OCaml/OCamlLanguage.h b/lldb/source/Plugins/Language/OCaml/OCamlLanguage.h deleted file mode 100644 index c4a75db2e54..00000000000 --- a/lldb/source/Plugins/Language/OCaml/OCamlLanguage.h +++ /dev/null @@ -1,53 +0,0 @@ -//===-- OCamlLanguage.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_OCamlLanguage_h_ -#define liblldb_OCamlLanguage_h_ - -// C Includes -// C++ Includes -#include <vector> - -// Other libraries and framework includes -#include "llvm/ADT/StringRef.h" - -// Project includes -#include "lldb/Target/Language.h" -#include "lldb/Utility/ConstString.h" -#include "lldb/lldb-private.h" - -namespace lldb_private { - -class OCamlLanguage : public Language { -public: - lldb::LanguageType GetLanguageType() const override { - return lldb::eLanguageTypeOCaml; - } - - bool IsSourceFile(llvm::StringRef file_path) const override; - - static void Initialize(); - - static void Terminate(); - - static lldb_private::Language *CreateInstance(lldb::LanguageType language); - - static lldb_private::ConstString GetPluginNameStatic(); - - ConstString GetPluginName() override; - - uint32_t GetPluginVersion() override; - - bool IsNilReference(ValueObject &valobj) override; -}; - -} // namespace lldb_private - -#endif // liblldb_OCamlLanguage_h_ |

