Return a disabler when an unknown method is called on a disabler object

pull/6106/head
James Hilliard 5 years ago committed by Jussi Pakkanen
parent 9ee9a1e1b2
commit 2b6c997e33
  1. 5
      mesonbuild/interpreterbase.py
  2. 3
      test cases/common/163 disabler/meson.build

@ -803,8 +803,11 @@ The result of this is undefined and will become a hard error in a future Meson r
(args, kwargs) = self.reduce_arguments(args)
# Special case. This is the only thing you can do with a disabler
# object. Every other use immediately returns the disabler object.
if isinstance(obj, Disabler) and method_name == 'found':
if isinstance(obj, Disabler):
if method_name == 'found':
return False
else:
return Disabler()
if is_disabled(args, kwargs):
return Disabler()
if method_name == 'extract_objects':

@ -2,6 +2,9 @@ project('dolphin option', 'c')
d = disabler()
full_path = d.full_path()
assert(is_disabler(full_path), 'Method call is not a disabler')
d2 = dependency(d)
d3 = (d == d2)
d4 = d + 0

Loading…
Cancel
Save