aboutsummaryrefslogtreecommitdiff
path: root/mesonbuild/ast/interpreter.py
diff options
context:
space:
mode:
authorDylan Baker <dylan@pnwbakers.com>2021-10-01 09:23:32 -0700
committerDylan Baker <dylan@pnwbakers.com>2022-03-07 12:33:33 -0800
commitcbc62e892aaea60a3692797c521672b95be9389d (patch)
treee27a2a0b2d3fdaac4b3c92bf43becb16aa97cc11 /mesonbuild/ast/interpreter.py
parentfd55ff6a725b920e821dd3c2d5179dd0011c216a (diff)
downloadmeson-cbc62e892aaea60a3692797c521672b95be9389d.zip
meson-cbc62e892aaea60a3692797c521672b95be9389d.tar.gz
meson-cbc62e892aaea60a3692797c521672b95be9389d.tar.bz2
interpreter: add an implementation for structured_sources
Diffstat (limited to 'mesonbuild/ast/interpreter.py')
-rw-r--r--mesonbuild/ast/interpreter.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/mesonbuild/ast/interpreter.py b/mesonbuild/ast/interpreter.py
index f5a1e5e..e5ff266 100644
--- a/mesonbuild/ast/interpreter.py
+++ b/mesonbuild/ast/interpreter.py
@@ -154,6 +154,7 @@ class AstInterpreter(InterpreterBase):
'alias_target': self.func_do_nothing,
'summary': self.func_do_nothing,
'range': self.func_do_nothing,
+ 'structured_sources': self.func_do_nothing,
})
def _unholder_args(self, args: _T, kwargs: _V) -> T.Tuple[_T, _V]: