mirror of
https://github.com/denoland/deno.git
synced 2025-03-03 09:31:22 -05:00
Upgrade V8 to 7.2.502.16 (#1403)
This commit is contained in:
parent
f8473bf22f
commit
9909e8a759
4 changed files with 5 additions and 4 deletions
|
@ -1,6 +1,6 @@
|
|||
# Copyright 2018 the Deno authors. All rights reserved. MIT license.
|
||||
solutions = [{
|
||||
'url': 'https://chromium.googlesource.com/v8/v8.git@7.1.302.4',
|
||||
'url': 'https://chromium.googlesource.com/v8/v8.git@7.2.502.16',
|
||||
'name': 'v8',
|
||||
'deps_file': 'DEPS',
|
||||
'custom_deps': {
|
||||
|
|
|
@ -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.
|
||||
|
|
|
@ -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;
|
||||
}
|
||||
|
|
|
@ -1 +1 @@
|
|||
Subproject commit f5583353dcef518fc4881e6b2329e8b601ccd042
|
||||
Subproject commit 20d8e1d12d1dea843a238576ff988522c028daa0
|
Loading…
Add table
Reference in a new issue