mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
Remove Why3 error class
This commit is contained in:
@@ -165,22 +165,3 @@ void ErrorReporter::docstringParsingError(string const& _description)
|
||||
_description
|
||||
);
|
||||
}
|
||||
|
||||
void ErrorReporter::why3TranslatorError(ASTNode const& _location, std::string const& _description)
|
||||
{
|
||||
error(
|
||||
Error::Type::Why3TranslatorError,
|
||||
_location.location(),
|
||||
_description
|
||||
);
|
||||
}
|
||||
|
||||
void ErrorReporter::fatalWhy3TranslatorError(ASTNode const& _location, std::string const& _description)
|
||||
{
|
||||
fatalError(
|
||||
Error::Type::Why3TranslatorError,
|
||||
_location.location(),
|
||||
_description
|
||||
);
|
||||
}
|
||||
|
||||
|
||||
@@ -79,10 +79,6 @@ public:
|
||||
|
||||
void docstringParsingError(std::string const& _location);
|
||||
|
||||
void why3TranslatorError(ASTNode const& _location, std::string const& _description);
|
||||
|
||||
void fatalWhy3TranslatorError(ASTNode const& _location, std::string const& _description);
|
||||
|
||||
ErrorList const& errors() const;
|
||||
|
||||
void clear();
|
||||
|
||||
@@ -46,9 +46,6 @@ Error::Error(Type _type, SourceLocation const& _location, string const& _descrip
|
||||
case Type::TypeError:
|
||||
m_typeName = "TypeError";
|
||||
break;
|
||||
case Type::Why3TranslatorError:
|
||||
m_typeName = "Why3TranslatorError";
|
||||
break;
|
||||
case Type::Warning:
|
||||
m_typeName = "Warning";
|
||||
break;
|
||||
|
||||
@@ -60,7 +60,6 @@ public:
|
||||
ParserError,
|
||||
TypeError,
|
||||
SyntaxError,
|
||||
Why3TranslatorError,
|
||||
Warning
|
||||
};
|
||||
|
||||
|
||||
Reference in New Issue
Block a user