mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
Add new info functions
This commit is contained in:
parent
719b70893f
commit
fa48abf4f1
@ -261,3 +261,8 @@ void ErrorReporter::info(
|
||||
{
|
||||
error(_error, Error::Type::Info, _location, _description);
|
||||
}
|
||||
|
||||
void ErrorReporter::info(ErrorId _error, string const& _description)
|
||||
{
|
||||
error(_error, Error::Type::Info, SourceLocation(), _description);
|
||||
}
|
||||
|
@ -72,6 +72,8 @@ public:
|
||||
std::string const& _description
|
||||
);
|
||||
|
||||
void info(ErrorId _error, std::string const& _description);
|
||||
|
||||
void declarationError(
|
||||
ErrorId _error,
|
||||
SourceLocation const& _location,
|
||||
|
@ -61,6 +61,20 @@ public:
|
||||
m_errorReporter.warning(_error, _description);
|
||||
}
|
||||
|
||||
void info(ErrorId _error, SourceLocation const& _location, std::string const& _description)
|
||||
{
|
||||
if (!seen(_error, _location, _description))
|
||||
{
|
||||
m_errorReporter.info(_error, _location, _description);
|
||||
markAsSeen(_error, _location, _description);
|
||||
}
|
||||
}
|
||||
|
||||
void info(ErrorId _error, std::string const& _description)
|
||||
{
|
||||
m_errorReporter.info(_error, _description);
|
||||
}
|
||||
|
||||
bool seen(ErrorId _error, SourceLocation const& _location, std::string const& _description) const
|
||||
{
|
||||
if (m_seenErrors.count({_error, _location}))
|
||||
|
Loading…
Reference in New Issue
Block a user