File tree Expand file tree Collapse file tree 2 files changed +5
-1
lines changed Expand file tree Collapse file tree 2 files changed +5
-1
lines changed Original file line number Diff line number Diff line change 3636
3737 # Reset this number to 0 on major V8 upgrades.
3838 # Increment by one for each non-official patch applied to deps/v8.
39- 'v8_embedder_string' : '-node.4 ' ,
39+ 'v8_embedder_string' : '-node.5 ' ,
4040
4141 ##### V8 defaults for Node.js #####
4242
Original file line number Diff line number Diff line change @@ -1423,7 +1423,9 @@ class ScriptOriginOptions {
14231423 */
14241424class ScriptOrigin {
14251425 public:
1426+ #if defined(_MSC_VER) && _MSC_VER >= 1910 /* Disable on VS2015 */
14261427 V8_DEPRECATE_SOON (" Use constructor with primitvie C++ types" )
1428+ #endif
14271429 V8_INLINE explicit ScriptOrigin (
14281430 Local<Value> resource_name, Local<Integer> resource_line_offset,
14291431 Local<Integer> resource_column_offset,
@@ -1918,9 +1920,11 @@ class V8_EXPORT ScriptCompiler {
19181920 public:
19191921 enum Encoding { ONE_BYTE, TWO_BYTE, UTF8 };
19201922
1923+ #if defined(_MSC_VER) && _MSC_VER >= 1910 /* Disable on VS2015 */
19211924 V8_DEPRECATED (
19221925 " This class takes ownership of source_stream, so use the constructor "
19231926 " taking a unique_ptr to make these semantics clearer" )
1927+ #endif
19241928 StreamedSource (ExternalSourceStream* source_stream, Encoding encoding);
19251929 StreamedSource (std::unique_ptr<ExternalSourceStream> source_stream,
19261930 Encoding encoding);
You can’t perform that action at this time.
0 commit comments