File tree 2 files changed +5
-1
lines changed
2 files changed +5
-1
lines changed Original file line number Diff line number Diff line change 36
36
37
37
# Reset this number to 0 on major V8 upgrades.
38
38
# Increment by one for each non-official patch applied to deps/v8.
39
- 'v8_embedder_string' : '-node.3 ' ,
39
+ 'v8_embedder_string' : '-node.4 ' ,
40
40
41
41
##### V8 defaults for Node.js #####
42
42
Original file line number Diff line number Diff line change @@ -1441,7 +1441,9 @@ class ScriptOriginOptions {
1441
1441
*/
1442
1442
class ScriptOrigin {
1443
1443
public:
1444
+ #if defined(_MSC_VER) && _MSC_VER >= 1910 /* Disable on VS2015 */
1444
1445
V8_DEPRECATED (" Use constructor with primitive C++ types" )
1446
+ #endif
1445
1447
V8_INLINE explicit ScriptOrigin (
1446
1448
Local<Value> resource_name, Local<Integer> resource_line_offset,
1447
1449
Local<Integer> resource_column_offset,
@@ -1452,7 +1454,9 @@ class ScriptOrigin {
1452
1454
Local<Boolean> is_wasm = Local<Boolean>(),
1453
1455
Local<Boolean> is_module = Local<Boolean>(),
1454
1456
Local<PrimitiveArray> host_defined_options = Local<PrimitiveArray>());
1457
+ #if defined(_MSC_VER) && _MSC_VER >= 1910 /* Disable on VS2015 */
1455
1458
V8_DEPRECATED (" Use constructor that takes an isolate" )
1459
+ #endif
1456
1460
V8_INLINE explicit ScriptOrigin (
1457
1461
Local<Value> resource_name, int resource_line_offset = 0 ,
1458
1462
int resource_column_offset = 0 ,
You can’t perform that action at this time.
0 commit comments