diff options
author | Anna Henningsen <anna@addaleax.net> | 2018-05-24 16:27:03 +0200 |
---|---|---|
committer | James M Snell <jasnell@gmail.com> | 2018-05-24 08:49:23 -0700 |
commit | 3f4caec1d1e6f2c75d2339db21920dc349986682 (patch) | |
tree | 55310524011589f6921e6e7c77f749e6372dbecc /src/exceptions.cc | |
parent | f96ef5574c6cb00f8d3076b93bc5b88bab9543ac (diff) | |
download | node-new-3f4caec1d1e6f2c75d2339db21920dc349986682.tar.gz |
src: re-integrate headers into node.h
Alternative to https://github.com/nodejs/node/pull/20938
(clean revert) and https://github.com/nodejs/node/pull/20925
(adding the headers to the release tarball).
The changes to `src/node.h` are a clean revert in the
same ways as https://github.com/nodejs/node/pull/20938 does it,
the difference being that the new `.cc` files are kept here.
This has the advantage of not being another large diff that
other PRs will have to rebase against, especially since
the split into `callback_scope.cc` and `exceptions.cc` is
something that we want to keep in the long run.
This essentialy implements bnoordhuis’s suggestion from
https://github.com/nodejs/node/pull/20925.
PR-URL: https://github.com/nodejs/node/pull/20939
Reviewed-By: Richard Lau <riclau@uk.ibm.com>
Reviewed-By: James M Snell <jasnell@gmail.com>
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl>
Reviewed-By: Refael Ackermann <refack@gmail.com>
Diffstat (limited to 'src/exceptions.cc')
-rw-r--r-- | src/exceptions.cc | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/exceptions.cc b/src/exceptions.cc index 3068483bdf..1bcc7651a2 100644 --- a/src/exceptions.cc +++ b/src/exceptions.cc @@ -2,7 +2,6 @@ #include "node_internals.h" #include "env.h" #include "env-inl.h" -#include "exceptions.h" #include "util.h" #include "util-inl.h" #include "v8.h" |