From da7b9df16c696979b0f3860cbde1692e2ba5e0cc Mon Sep 17 00:00:00 2001 From: Daniel Mensinger Date: Fri, 1 Feb 2019 10:44:17 +0100 Subject: Ensure that func dicts provide the same set of functions --- mesonbuild/ast/interpreter.py | 10 ++++++++++ 1 file changed, 10 insertions(+) (limited to 'mesonbuild/ast/interpreter.py') diff --git a/mesonbuild/ast/interpreter.py b/mesonbuild/ast/interpreter.py index 2071432..68c017a 100644 --- a/mesonbuild/ast/interpreter.py +++ b/mesonbuild/ast/interpreter.py @@ -89,6 +89,16 @@ class AstInterpreter(interpreterbase.InterpreterBase): 'set_variable': self.func_do_nothing, 'get_variable': self.func_do_nothing, 'is_variable': self.func_do_nothing, + 'disabler': self.func_do_nothing, + 'gettext': self.func_do_nothing, + 'jar': self.func_do_nothing, + 'warning': self.func_do_nothing, + 'shared_module': self.func_do_nothing, + 'option': self.func_do_nothing, + 'both_libraries': self.func_do_nothing, + 'add_test_setup': self.func_do_nothing, + 'find_library': self.func_do_nothing, + 'subdir_done': self.func_do_nothing, }) def func_do_nothing(self, node, args, kwargs): -- cgit v1.1