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 fee02c7 commit aff2214Copy full SHA for aff2214
configure.py
@@ -1671,7 +1671,7 @@ def configure_v8(o, configs):
1671
o['variables']['v8_enable_short_builtin_calls'] = 1
1672
if options.v8_enable_snapshot_compression:
1673
o['variables']['v8_enable_snapshot_compression'] = 1
1674
- 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']):
1675
raise Exception(
1676
'Only one of the --v8-enable-object-print or --v8-disable-object-print options '
1677
'can be specified at a time.')
0 commit comments