Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code

Unified Diff: src/JsError.cpp

Issue 29810586: Issue 6526 - Use the maybe version of Compile() and Run() (Closed) Base URL: https://hg.adblockplus.org/libadblockplus/
Patch Set: Created June 19, 2018, 5:14 p.m.
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View side-by-side diff with in-line comments
Download patch
« src/JsError.h ('K') | « src/JsError.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/JsError.cpp
===================================================================
--- a/src/JsError.cpp
+++ b/src/JsError.cpp
@@ -39,8 +39,23 @@
auto lineNumber = message->GetLineNumber(isolate->GetCurrentContext());
if (lineNumber.IsJust())
error << lineNumber.FromJust();
else
error << "<unknown>";
}
return error.str();
}
+
+JsValueError::JsValueError(v8::Isolate* isolate, const char* filename, int line)
+ : std::runtime_error(ErrorToString(filename, line))
+{
+}
+
+std::string JsValueError::ErrorToString(const char* filename, int line)
+{
+ std::stringstream error;
+ error << "Empty value at ";
+ error << filename;
+ error << ":";
+ error << line;
+ return error.str();
+}
« src/JsError.h ('K') | « src/JsError.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld