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 @@ -61,7 +61,9 @@ class ScriptOriginOptions {
61
61
*/
62
62
class V8_EXPORT ScriptOrigin {
63
63
public:
64
+ #if defined(_MSC_VER) && _MSC_VER >= 1910 /* Disable on VS2015 */
64
65
V8_DEPRECATED (" Use constructor with primitive C++ types" )
66
+ #endif
65
67
ScriptOrigin (
66
68
Local<Value> resource_name, Local<Integer> resource_line_offset,
67
69
Local<Integer> resource_column_offset,
@@ -72,7 +74,9 @@ class V8_EXPORT ScriptOrigin {
72
74
Local<Boolean> is_wasm = Local<Boolean>(),
73
75
Local<Boolean> is_module = Local<Boolean>(),
74
76
Local<Data> host_defined_options = Local<Data>());
77
+ #if defined(_MSC_VER) && _MSC_VER >= 1910 /* Disable on VS2015 */
75
78
V8_DEPRECATED (" Use constructor that takes an isolate" )
79
+ #endif
76
80
explicit ScriptOrigin (Local<Value> resource_name,
77
81
int resource_line_offset = 0 ,
78
82
int resource_column_offset = 0 ,
You can’t perform that action at this time.
0 commit comments