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 298dea0 commit 96fecebCopy full SHA for 96feceb
configure.py
@@ -1667,7 +1667,7 @@ def configure_v8(o, configs):
1667
o['variables']['v8_enable_short_builtin_calls'] = 1
1668
if options.v8_enable_snapshot_compression:
1669
o['variables']['v8_enable_snapshot_compression'] = 1
1670
- 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']):
1671
raise Exception(
1672
'Only one of the --v8-enable-object-print or --v8-disable-object-print options '
1673
'can be specified at a time.')
0 commit comments