From 80bd35c646ba35f8ee9c0efdf28795f712cd7a2f Mon Sep 17 00:00:00 2001 From: Daniel Mensinger Date: Sun, 29 Aug 2021 19:33:33 +0200 Subject: 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. --- mesonbuild/interpreterbase/operator.py | 2 -- 1 file changed, 2 deletions(-) (limited to 'mesonbuild') diff --git a/mesonbuild/interpreterbase/operator.py b/mesonbuild/interpreterbase/operator.py index bf9b6b06a..cfaddc7e7 100644 --- a/mesonbuild/interpreterbase/operator.py +++ b/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()' -- cgit v1.2.3