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:
parent
b3be9d6fdc
commit
c5947ae6e3
@ -165,22 +165,3 @@ void ErrorReporter::docstringParsingError(string const& _description)
|
|||||||
_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 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;
|
ErrorList const& errors() const;
|
||||||
|
|
||||||
void clear();
|
void clear();
|
||||||
|
@ -46,9 +46,6 @@ Error::Error(Type _type, SourceLocation const& _location, string const& _descrip
|
|||||||
case Type::TypeError:
|
case Type::TypeError:
|
||||||
m_typeName = "TypeError";
|
m_typeName = "TypeError";
|
||||||
break;
|
break;
|
||||||
case Type::Why3TranslatorError:
|
|
||||||
m_typeName = "Why3TranslatorError";
|
|
||||||
break;
|
|
||||||
case Type::Warning:
|
case Type::Warning:
|
||||||
m_typeName = "Warning";
|
m_typeName = "Warning";
|
||||||
break;
|
break;
|
||||||
|
@ -60,7 +60,6 @@ public:
|
|||||||
ParserError,
|
ParserError,
|
||||||
TypeError,
|
TypeError,
|
||||||
SyntaxError,
|
SyntaxError,
|
||||||
Why3TranslatorError,
|
|
||||||
Warning
|
Warning
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -164,10 +164,6 @@ string compile(StringMap const& _sources, bool _optimize, CStyleReadFileCallback
|
|||||||
// "srcmapRuntime" = "0:1:2",
|
// "srcmapRuntime" = "0:1:2",
|
||||||
// "assembly" = {}
|
// "assembly" = {}
|
||||||
// }
|
// }
|
||||||
// },
|
|
||||||
// "formal": {
|
|
||||||
// "errors": [ "Error 1" ],
|
|
||||||
// "why3": "why3 source"
|
|
||||||
// }
|
// }
|
||||||
// }
|
// }
|
||||||
Json::Value output = Json::objectValue;
|
Json::Value output = Json::objectValue;
|
||||||
|
Loading…
Reference in New Issue
Block a user