aboutsummaryrefslogtreecommitdiffstats
path: root/libsolidity/interface/Exceptions.cpp
diff options
context:
space:
mode:
authorYoichi Hirai <i@yoichihirai.com>2017-03-08 18:56:44 +0800
committerGitHub <noreply@github.com>2017-03-08 18:56:44 +0800
commita1e350a4aeef11865d2deee5a4e59feb0625d053 (patch)
tree1ee5814805c2f9e440714cb115c1102f363e8258 /libsolidity/interface/Exceptions.cpp
parenta2ac05e1a2cee0be25234d5f595e8adf2372fb88 (diff)
parentf8ce32f2a6899a7026a754b44c4b68d009e1742e (diff)
downloaddexon-solidity-a1e350a4aeef11865d2deee5a4e59feb0625d053.tar.gz
dexon-solidity-a1e350a4aeef11865d2deee5a4e59feb0625d053.tar.zst
dexon-solidity-a1e350a4aeef11865d2deee5a4e59feb0625d053.zip
Merge pull request #1699 from ethereum/asmlabels
Assembly labels with stack information
Diffstat (limited to 'libsolidity/interface/Exceptions.cpp')
-rw-r--r--libsolidity/interface/Exceptions.cpp8
1 files changed, 8 insertions, 0 deletions
diff --git a/libsolidity/interface/Exceptions.cpp b/libsolidity/interface/Exceptions.cpp
index 406ebbfb..968a24ad 100644
--- a/libsolidity/interface/Exceptions.cpp
+++ b/libsolidity/interface/Exceptions.cpp
@@ -64,6 +64,14 @@ Error::Error(Type _type, SourceLocation const& _location, string const& _descrip
*this << errinfo_comment(_description);
}
+Error::Error(Error::Type _type, const std::string& _description, const SourceLocation& _location):
+ Error(_type)
+{
+ if (!_location.isEmpty())
+ *this << errinfo_sourceLocation(_location);
+ *this << errinfo_comment(_description);
+}
+
string Exception::lineInfo() const
{
char const* const* file = boost::get_error_info<boost::throw_file>(*this);