32 lines
957 B
C++
32 lines
957 B
C++
/*
|
|
Copyright (c) 2014 Microsoft Corporation. All rights reserved.
|
|
Released under Apache 2.0 license as described in the file LICENSE.
|
|
|
|
Author: Leonardo de Moura
|
|
*/
|
|
#pragma once
|
|
#include "library/io_state_stream.h"
|
|
|
|
namespace lean {
|
|
/** \brief Auxiliary object for "inserting" delimiters for flycheck */
|
|
class flycheck_scope {
|
|
io_state_stream m_ios;
|
|
bool m_flycheck;
|
|
public:
|
|
flycheck_scope(io_state_stream const & ios, char const * kind);
|
|
~flycheck_scope();
|
|
bool enabled() const { return m_flycheck; }
|
|
};
|
|
|
|
struct flycheck_error : public flycheck_scope {
|
|
flycheck_error(io_state_stream const & ios):flycheck_scope(ios, "ERROR") {}
|
|
};
|
|
|
|
struct flycheck_warning : public flycheck_scope {
|
|
flycheck_warning(io_state_stream const & ios):flycheck_scope(ios, "WARNING") {}
|
|
};
|
|
|
|
struct flycheck_information : public flycheck_scope {
|
|
flycheck_information(io_state_stream const & ios):flycheck_scope(ios, "INFORMATION") {}
|
|
};
|
|
}
|