05ba8a3a07
git-svn-id: http://root.cern.ch/svn/root/trunk@45844 27541ba8-7e3a-0410-8455-c3a389f83636
45 lines
1.3 KiB
C++
45 lines
1.3 KiB
C++
//--------------------------------------------------------------------*- C++ -*-
|
|
// CLING - the C++ LLVM-based InterpreterG :)
|
|
// version: $Id$
|
|
// author: Vassil Vassilev <vvasilev@cern.ch>
|
|
//------------------------------------------------------------------------------
|
|
|
|
#ifndef CLING_AST_NODE_ERASER
|
|
#define CLING_AST_NODE_ERASER
|
|
|
|
namespace clang {
|
|
class Sema;
|
|
}
|
|
|
|
namespace cling {
|
|
|
|
class Transaction;
|
|
|
|
///\brief A simple eraser class that removes already created AST Nodes.
|
|
///
|
|
class ASTNodeEraser {
|
|
private:
|
|
clang::Sema* m_Sema;
|
|
|
|
public:
|
|
ASTNodeEraser(clang::Sema* S);
|
|
~ASTNodeEraser();
|
|
|
|
///\brief Rolls back given transaction from the AST.
|
|
///
|
|
/// Removing includes reseting various internal stuctures in the compiler to
|
|
/// their previous states. For example it resets the lookup tables if the
|
|
/// declaration has name and can be looked up; Reverts the redeclaration
|
|
/// chain if the declaration was redeclarable and so on.
|
|
/// Note1: that the code generated for the declaration is not removed yet.
|
|
/// Note2: does not do dependency analysis.
|
|
///
|
|
///\param[in] T - The transaction to be removed.
|
|
///\returns true on success.
|
|
///
|
|
bool RevertTransaction(const Transaction* T);
|
|
};
|
|
} // end namespace cling
|
|
|
|
#endif // CLING_AST_NODE_ERASER
|