summaryrefslogtreecommitdiff
path: root/deps/v8/include
diff options
context:
space:
mode:
authorMichaël Zasso <targos@protonmail.com>2018-08-24 11:49:42 +0200
committerMichaël Zasso <targos@protonmail.com>2018-08-28 14:11:20 +0200
commit08aad66411a11218674f40a393e2af91cc26ee40 (patch)
treead555d7cd37d81e9f8554d270889699605b31d3e /deps/v8/include
parent5081d9663f1ce50d733762b64278d99baa810c04 (diff)
downloadandroid-node-v8-08aad66411a11218674f40a393e2af91cc26ee40.tar.gz
android-node-v8-08aad66411a11218674f40a393e2af91cc26ee40.tar.bz2
android-node-v8-08aad66411a11218674f40a393e2af91cc26ee40.zip
src,deps: add isolate parameter to String::Concat
Partially backport an upstream commit that deprecates String::Concat without the isolate parameter. This overload has already been removed in V8 7.0. PR-URL: https://github.com/nodejs/node/pull/22521 Refs: https://github.com/v8/v8/commit/8a011b57d8b26e9cfe1c20a2ef26adb14be6ecc2 Reviewed-By: Ujjwal Sharma <usharma1998@gmail.com> Reviewed-By: Gus Caplan <me@gus.host> Reviewed-By: Tiancheng "Timothy" Gu <timothygu99@gmail.com> Reviewed-By: Refael Ackermann <refack@gmail.com>
Diffstat (limited to 'deps/v8/include')
-rw-r--r--deps/v8/include/v8.h6
1 files changed, 5 insertions, 1 deletions
diff --git a/deps/v8/include/v8.h b/deps/v8/include/v8.h
index b5bb85ca8a..362bece11f 100644
--- a/deps/v8/include/v8.h
+++ b/deps/v8/include/v8.h
@@ -2901,7 +2901,11 @@ class V8_EXPORT String : public Name {
* Creates a new string by concatenating the left and the right strings
* passed in as parameters.
*/
- static Local<String> Concat(Local<String> left, Local<String> right);
+ static Local<String> Concat(Isolate* isolate, Local<String> left,
+ Local<String> right);
+ static V8_DEPRECATE_SOON("Use Isolate* version",
+ Local<String> Concat(Local<String> left,
+ Local<String> right));
/**
* Creates a new external string using the data defined in the given