interpreter: Remove the AND and OR operator enums

These operators don't make sens to use in ObjectHolders, since
this mechanism wouldn't allow for lazy evaluation.
pull/9202/head
Daniel Mensinger 3 years ago
parent 43a6b5bd5e
commit 80bd35c646
  1. 2
      mesonbuild/interpreterbase/operator.py

@ -14,8 +14,6 @@ class MesonOperator(Enum):
# Logic
NOT = 'not'
AND = 'and'
OR = 'or'
# Should return the boolsche interpretation of the value (`'' == false` for instance)
BOOL = 'bool()'

Loading…
Cancel
Save