#include "SynTree/Visitor.h"
#include "SymTab/Indexer.h"

namespace InitTweak {

  bool isDeclStmtP(Statement *stmt);

  class DeclarationHoister: public Mutator {
  public:
    virtual CompoundStmt   *mutate(CompoundStmt *compoundStmt);
  };

}  // namespace InitTweak

/*
  Local Variables:
  mode: c++
  End:
*/
