aboutsummaryrefslogtreecommitdiff
path: root/mesonbuild/astinterpreter.py
diff options
context:
space:
mode:
authorJussi Pakkanen <jpakkane@gmail.com>2016-12-31 14:33:42 +0200
committerJussi Pakkanen <jpakkane@gmail.com>2016-12-31 16:28:15 +0200
commitb55235dfbde37661d24881eb989ee651ed9289c5 (patch)
tree5478d7a8483b30ec38338a0482bb52f8941b746c /mesonbuild/astinterpreter.py
parent504f974204c79a08d17224c2a91582a47c64fe68 (diff)
downloadmeson-b55235dfbde37661d24881eb989ee651ed9289c5.zip
meson-b55235dfbde37661d24881eb989ee651ed9289c5.tar.gz
meson-b55235dfbde37661d24881eb989ee651ed9289c5.tar.bz2
Fix space before :.
Diffstat (limited to 'mesonbuild/astinterpreter.py')
-rw-r--r--mesonbuild/astinterpreter.py80
1 files changed, 40 insertions, 40 deletions
diff --git a/mesonbuild/astinterpreter.py b/mesonbuild/astinterpreter.py
index 7a83736..1cdf523 100644
--- a/mesonbuild/astinterpreter.py
+++ b/mesonbuild/astinterpreter.py
@@ -47,47 +47,47 @@ class AstInterpreter(interpreterbase.InterpreterBase):
def __init__(self, source_root, subdir):
super().__init__(source_root, subdir)
self.asts = {}
- self.funcs.update({'project' : self.func_do_nothing,
- 'test' : self.func_do_nothing,
- 'benchmark' : self.func_do_nothing,
- 'install_headers' : self.func_do_nothing,
- 'install_man' : self.func_do_nothing,
- 'install_data' : self.func_do_nothing,
- 'install_subdir' : self.func_do_nothing,
- 'configuration_data' : self.func_do_nothing,
- 'configure_file' : self.func_do_nothing,
- 'find_program' : self.func_do_nothing,
- 'include_directories' : self.func_do_nothing,
- 'add_global_arguments' : self.func_do_nothing,
- 'add_global_link_arguments' : self.func_do_nothing,
- 'add_project_arguments' : self.func_do_nothing,
- 'add_project_link_arguments' : self.func_do_nothing,
- 'message' : self.func_do_nothing,
- 'generator' : self.func_do_nothing,
- 'error' : self.func_do_nothing,
- 'run_command' : self.func_do_nothing,
- 'assert' : self.func_do_nothing,
- 'subproject' : self.func_do_nothing,
- 'dependency' : self.func_do_nothing,
- 'get_option' : self.func_do_nothing,
- 'join_paths' : self.func_do_nothing,
- 'environment' : self.func_do_nothing,
- 'import' : self.func_do_nothing,
- 'vcs_tag' : self.func_do_nothing,
- 'add_languages' : self.func_do_nothing,
- 'declare_dependency' : self.func_do_nothing,
- 'files' : self.func_files,
+ self.funcs.update({'project': self.func_do_nothing,
+ 'test': self.func_do_nothing,
+ 'benchmark': self.func_do_nothing,
+ 'install_headers': self.func_do_nothing,
+ 'install_man': self.func_do_nothing,
+ 'install_data': self.func_do_nothing,
+ 'install_subdir': self.func_do_nothing,
+ 'configuration_data': self.func_do_nothing,
+ 'configure_file': self.func_do_nothing,
+ 'find_program': self.func_do_nothing,
+ 'include_directories': self.func_do_nothing,
+ 'add_global_arguments': self.func_do_nothing,
+ 'add_global_link_arguments': self.func_do_nothing,
+ 'add_project_arguments': self.func_do_nothing,
+ 'add_project_link_arguments': self.func_do_nothing,
+ 'message': self.func_do_nothing,
+ 'generator': self.func_do_nothing,
+ 'error': self.func_do_nothing,
+ 'run_command': self.func_do_nothing,
+ 'assert': self.func_do_nothing,
+ 'subproject': self.func_do_nothing,
+ 'dependency': self.func_do_nothing,
+ 'get_option': self.func_do_nothing,
+ 'join_paths': self.func_do_nothing,
+ 'environment': self.func_do_nothing,
+ 'import': self.func_do_nothing,
+ 'vcs_tag': self.func_do_nothing,
+ 'add_languages': self.func_do_nothing,
+ 'declare_dependency': self.func_do_nothing,
+ 'files': self.func_files,
'executable': self.func_executable,
- 'static_library' : self.func_static_lib,
- 'shared_library' : self.func_shared_lib,
- 'library' : self.func_library,
- 'build_target' : self.func_build_target,
- 'custom_target' : self.func_custom_target,
- 'run_target' : self.func_run_target,
- 'subdir' : self.func_subdir,
- 'set_variable' : self.func_set_variable,
- 'get_variable' : self.func_get_variable,
- 'is_variable' : self.func_is_variable,
+ 'static_library': self.func_static_lib,
+ 'shared_library': self.func_shared_lib,
+ 'library': self.func_library,
+ 'build_target': self.func_build_target,
+ 'custom_target': self.func_custom_target,
+ 'run_target': self.func_run_target,
+ 'subdir': self.func_subdir,
+ 'set_variable': self.func_set_variable,
+ 'get_variable': self.func_get_variable,
+ 'is_variable': self.func_is_variable,
})
def func_do_nothing(self, node, args, kwargs):