We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b72bf8c commit 65117fcCopy full SHA for 65117fc
configure.py
@@ -1625,7 +1625,7 @@ def configure_v8(o, configs):
1625
o['variables']['v8_enable_short_builtin_calls'] = 1
1626
if options.v8_enable_snapshot_compression:
1627
o['variables']['v8_enable_snapshot_compression'] = 1
1628
- if options.v8_enable_object_print and options.v8_disable_object_print:
+ if all(opt in sys.argv for opt in ['--v8-enable-object-print', '--v8-disable-object-print']):
1629
raise Exception(
1630
'Only one of the --v8-enable-object-print or --v8-disable-object-print options '
1631
'can be specified at a time.')
0 commit comments