summaryrefslogtreecommitdiff
path: root/libdeno
diff options
context:
space:
mode:
authorRyan Dahl <ry@tinyclouds.org>2018-12-23 17:08:08 -0500
committerGitHub <noreply@github.com>2018-12-23 17:08:08 -0500
commit9909e8a7590c8b68e6ae3b3752cecd86f8841cad (patch)
treecff8672004e8f5ed8e35ecb79fabdda057f75b10 /libdeno
parentf8473bf22f3d3972bf5f725b5e4a1849a3d8f726 (diff)
Upgrade V8 to 7.2.502.16 (#1403)
Diffstat (limited to 'libdeno')
-rw-r--r--libdeno/BUILD.gn2
-rw-r--r--libdeno/api.cc3
2 files changed, 3 insertions, 2 deletions
diff --git a/libdeno/BUILD.gn b/libdeno/BUILD.gn
index f2a9228c5..bf780cbaa 100644
--- a/libdeno/BUILD.gn
+++ b/libdeno/BUILD.gn
@@ -1,6 +1,6 @@
# Copyright 2018 the Deno authors. All rights reserved. MIT license.
-import("./deno.gni")
import("//third_party/v8/gni/v8.gni")
+import("./deno.gni")
config("deno_config") {
include_dirs = [ "//third_party/v8" ] # This allows us to v8/src/base/ libraries.
diff --git a/libdeno/api.cc b/libdeno/api.cc
index 472181819..e6bc670c7 100644
--- a/libdeno/api.cc
+++ b/libdeno/api.cc
@@ -154,9 +154,10 @@ int deno_respond(Deno* d_, void* user_data, int32_t req_id, deno_buf buf) {
v8::Local<v8::Value> args[1];
args[0] = deno::ImportBuf(d, buf);
- recv_->Call(context->Global(), 1, args);
+ auto v = recv_->Call(context, context->Global(), 1, args);
if (try_catch.HasCaught()) {
+ CHECK(v.IsEmpty());
deno::HandleException(context, try_catch.Exception());
return 1;
}