8000
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 d86f247 commit d288ec3Copy full SHA for d288ec3
configure.py
@@ -1621,7 +1621,7 @@ def configure_v8(o):
1621
o['variables']['v8_enable_short_builtin_calls'] = 1
1622
if options.v8_enable_snapshot_compression:
1623
o['variables']['v8_enable_snapshot_compression'] = 1
1624
- 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']):
1625
raise Exception(
1626
'Only one of the --v8-enable-object-print or --v8-disable-object-print options '
1627
'can be specified at a time.')
0 commit comments