Remove Why3 error class

This commit is contained in:
Alex Beregszaszi 2017-06-30 22:30:43 +01:00
parent b3be9d6fdc
commit c5947ae6e3
5 changed files with 0 additions and 31 deletions

View File

@ -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
);
}

View File

@ -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();

View File

@ -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;

View File

@ -60,7 +60,6 @@ public:
ParserError,
TypeError,
SyntaxError,
Why3TranslatorError,
Warning
};

View File

@ -164,10 +164,6 @@ string compile(StringMap const& _sources, bool _optimize, CStyleReadFileCallback
// "srcmapRuntime" = "0:1:2",
// "assembly" = {}
// }
// },
// "formal": {
// "errors": [ "Error 1" ],
// "why3": "why3 source"
// }
// }
Json::Value output = Json::objectValue;