-
-
Notifications
You must be signed in to change notification settings - Fork 528
Expand file tree
/
Copy pathtrycatch.cpp
More file actions
31 lines (26 loc) · 897 Bytes
/
trycatch.cpp
File metadata and controls
31 lines (26 loc) · 897 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
/*********************************************************************
* NAN - Native Abstractions for Node.js
*
* Copyright (c) 2018 NAN contributors
*
* MIT License <https://github.com/nodejs/nan/blob/master/LICENSE.md>
********************************************************************/
#include <nan.h>
using namespace Nan; // NOLINT(build/namespaces)
NAN_METHOD(TryCatchTest) {
TryCatch try_catch;
v8::Local<v8::String> s = New("throw 'waaa'").ToLocalChecked();
v8::Local<UnboundScript> script = New<UnboundScript>(s).ToLocalChecked();
MaybeLocal<v8::Value> result = RunScript(script);
if (result.IsEmpty()) {
assert(try_catch.HasCaught());
try_catch.ReThrow();
}
}
NAN_MODULE_INIT(Init) {
Set(target
, New<v8::String>("r").ToLocalChecked()
, GetFunction(New<v8::FunctionTemplate>(TryCatchTest)).ToLocalChecked()
);
}
NODE_MODULE(trycatch, Init)