diff options
author | Michaël Zasso <targos@protonmail.com> | 2018-04-04 22:11:11 +0200 |
---|---|---|
committer | Michaël Zasso <targos@protonmail.com> | 2018-04-07 15:10:27 +0200 |
commit | 77b52fd58f7398a81999c81afd21fe2e156c0766 (patch) | |
tree | 8b8998b9dfbd89661e82aa044464c32cb56b07cc /src/node_contextify.h | |
parent | 0ac6ced2e9e09fdfe4b5c9aec8fb9a3f570f63e7 (diff) | |
download | node-new-77b52fd58f7398a81999c81afd21fe2e156c0766.tar.gz |
module: move options checks from C++ to JS
PR-URL: https://github.com/nodejs/node/pull/19822
Reviewed-By: Matteo Collina <matteo.collina@gmail.com>
Reviewed-By: Guy Bedford <guybedford@gmail.com>
Reviewed-By: Gus Caplan <me@gus.host>
Reviewed-By: James M Snell <jasnell@gmail.com>
Diffstat (limited to 'src/node_contextify.h')
-rw-r--r-- | src/node_contextify.h | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/src/node_contextify.h b/src/node_contextify.h index 1075bc5c68..565b8ef856 100644 --- a/src/node_contextify.h +++ b/src/node_contextify.h @@ -98,17 +98,6 @@ class ContextifyContext { const v8::PropertyCallbackInfo<v8::Boolean>& args); }; -v8::Maybe<bool> GetBreakOnSigintArg( - Environment* env, v8::Local<v8::Value> options); -v8::Maybe<int64_t> GetTimeoutArg( - Environment* env, v8::Local<v8::Value> options); -v8::MaybeLocal<v8::Integer> GetLineOffsetArg( - Environment* env, v8::Local<v8::Value> options); -v8::MaybeLocal<v8::Integer> GetColumnOffsetArg( - Environment* env, v8::Local<v8::Value> options); -v8::MaybeLocal<v8::Context> GetContextArg( - Environment* env, v8::Local<v8::Value> options); - } // namespace contextify } // namespace node |