diff options
author | Daniel Mensinger <daniel@mensinger-ka.de> | 2021-09-01 23:18:28 +0200 |
---|---|---|
committer | Daniel Mensinger <daniel@mensinger-ka.de> | 2021-09-25 12:44:11 +0200 |
commit | d93d01b6c5c98a77e057b914e8d66b01d2a10771 (patch) | |
tree | ca759dff3424ad09519fada202bbbbe4ad9eaf14 /mesonbuild/interpreterbase/baseobjects.py | |
parent | 5fcb0e6525e2044e0f82bda488a51350e0f7f29f (diff) | |
download | meson-d93d01b6c5c98a77e057b914e8d66b01d2a10771.zip meson-d93d01b6c5c98a77e057b914e8d66b01d2a10771.tar.gz meson-d93d01b6c5c98a77e057b914e8d66b01d2a10771.tar.bz2 |
interpreter: Introduce StringHolder
Another commit in my quest to rid InterpreterBase from all higher
level object processing logic.
Additionally, there is a a logic change here, since `str.join` now
uses varargs and can now accept more than one argument (and supports
list flattening).
Diffstat (limited to 'mesonbuild/interpreterbase/baseobjects.py')
-rw-r--r-- | mesonbuild/interpreterbase/baseobjects.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/mesonbuild/interpreterbase/baseobjects.py b/mesonbuild/interpreterbase/baseobjects.py index 80cf0b5..c979f7d 100644 --- a/mesonbuild/interpreterbase/baseobjects.py +++ b/mesonbuild/interpreterbase/baseobjects.py @@ -129,8 +129,8 @@ class MesonInterpreterObject(InterpreterObject): class MutableInterpreterObject: ''' Dummy class to mark the object type as mutable ''' -HoldableTypes = (HoldableObject, int, bool) -TYPE_HoldableTypes = T.Union[HoldableObject, int, bool] +HoldableTypes = (HoldableObject, int, bool, str) +TYPE_HoldableTypes = T.Union[HoldableObject, int, bool, str] InterpreterObjectTypeVar = T.TypeVar('InterpreterObjectTypeVar', bound=TYPE_HoldableTypes) class ObjectHolder(InterpreterObject, T.Generic[InterpreterObjectTypeVar]): |