Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nodejs/node.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoyee Cheung <joyeec9h3@gmail.com>2018-11-03 17:45:40 +0300
committerJoyee Cheung <joyeec9h3@gmail.com>2018-11-06 15:58:40 +0300
commit5850220229cdd8b62f6d5022779af7c232231d64 (patch)
tree7dbb9c7d94be088bebf535ec41ed4a8096af847e /src/node_url.cc
parent7b1297d856dbd9af85c18478301b234caebf04e4 (diff)
src: move error handling code into node_errors.cc
Move the following code into a new node_errors.cc file and declare them in node_errors.h for clarity and make it possible to include them with node_errors.h. - AppendExceptionLine() - DecorateErrorStack() - FatalError() - OnFatalError() - PrintErrorString() - FatalException() - ReportException() - FatalTryCatch And move the following definitions (declared elsewhere than node_errors.h) to node_errors.cc: - Abort() (in util.h) - Assert() (in util.h) PR-URL: https://github.com/nodejs/node/pull/24058 Reviewed-By: Refael Ackermann <refack@gmail.com> Reviewed-By: Daniel Bevenius <daniel.bevenius@gmail.com>
Diffstat (limited to 'src/node_url.cc')
-rw-r--r--src/node_url.cc3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/node_url.cc b/src/node_url.cc
index 0be777e03d1..a3f22f7c983 100644
--- a/src/node_url.cc
+++ b/src/node_url.cc
@@ -1,7 +1,8 @@
#include "node_url.h"
-#include "node_internals.h"
#include "base_object-inl.h"
+#include "node_errors.h"
#include "node_i18n.h"
+#include "node_internals.h"
#include <string>
#include <vector>