diff options
author | Pablo Correa Gómez <ablocorrea@hotmail.com> | 2021-11-19 23:01:50 +0100 |
---|---|---|
committer | Eli Schwartz <eschwartz93@gmail.com> | 2021-12-01 13:59:54 -0500 |
commit | bb5a09de45a99b657b16edef7a9be423735aec79 (patch) | |
tree | 95ae8aee68a7800bd2d0046d78677f1e006c02ea | |
parent | 79c3e9ca4dae3c09212ed65954ec90c6e21f1485 (diff) | |
download | meson-bb5a09de45a99b657b16edef7a9be423735aec79.zip meson-bb5a09de45a99b657b16edef7a9be423735aec79.tar.gz meson-bb5a09de45a99b657b16edef7a9be423735aec79.tar.bz2 |
interpreter: reorder functions alphabetically
-rw-r--r-- | mesonbuild/interpreter/interpreter.py | 30 |
1 files changed, 15 insertions, 15 deletions
diff --git a/mesonbuild/interpreter/interpreter.py b/mesonbuild/interpreter/interpreter.py index da288ca..97e1a06 100644 --- a/mesonbuild/interpreter/interpreter.py +++ b/mesonbuild/interpreter/interpreter.py @@ -331,14 +331,15 @@ class Interpreter(InterpreterBase, HoldableObject): def build_func_dict(self): self.funcs.update({'add_global_arguments': self.func_add_global_arguments, - 'add_project_arguments': self.func_add_project_arguments, 'add_global_link_arguments': self.func_add_global_link_arguments, + 'add_languages': self.func_add_languages, + 'add_project_arguments': self.func_add_project_arguments, 'add_project_link_arguments': self.func_add_project_link_arguments, 'add_test_setup': self.func_add_test_setup, - 'add_languages': self.func_add_languages, 'alias_target': self.func_alias_target, 'assert': self.func_assert, 'benchmark': self.func_benchmark, + 'both_libraries': self.func_both_lib, 'build_target': self.func_build_target, 'configuration_data': self.func_configuration_data, 'configure_file': self.func_configure_file, @@ -349,19 +350,19 @@ class Interpreter(InterpreterBase, HoldableObject): 'environment': self.func_environment, 'error': self.func_error, 'executable': self.func_executable, - 'generator': self.func_generator, - 'gettext': self.func_gettext, - 'get_option': self.func_get_option, - 'get_variable': self.func_get_variable, 'files': self.func_files, 'find_library': self.func_find_library, 'find_program': self.func_find_program, - 'include_directories': self.func_include_directories, + 'generator': self.func_generator, + 'get_option': self.func_get_option, + 'get_variable': self.func_get_variable, + 'gettext': self.func_gettext, 'import': self.func_import, + 'include_directories': self.func_include_directories, 'install_data': self.func_install_data, + 'install_emptydir': self.func_install_emptydir, 'install_headers': self.func_install_headers, 'install_man': self.func_install_man, - 'install_emptydir': self.func_install_emptydir, 'install_subdir': self.func_install_subdir, 'is_disabler': self.func_is_disabler, 'is_variable': self.func_is_variable, @@ -369,24 +370,23 @@ class Interpreter(InterpreterBase, HoldableObject): 'join_paths': self.func_join_paths, 'library': self.func_library, 'message': self.func_message, - 'warning': self.func_warning, 'option': self.func_option, 'project': self.func_project, - 'run_target': self.func_run_target, + 'range': self.func_range, 'run_command': self.func_run_command, + 'run_target': self.func_run_target, 'set_variable': self.func_set_variable, 'subdir': self.func_subdir, - 'subdir_done': self.func_subdir_done, - 'subproject': self.func_subproject, - 'summary': self.func_summary, 'shared_library': self.func_shared_lib, 'shared_module': self.func_shared_module, 'static_library': self.func_static_lib, - 'both_libraries': self.func_both_lib, + 'subdir_done': self.func_subdir_done, + 'subproject': self.func_subproject, + 'summary': self.func_summary, 'test': self.func_test, 'unset_variable': self.func_unset_variable, 'vcs_tag': self.func_vcs_tag, - 'range': self.func_range, + 'warning': self.func_warning, }) if 'MESON_UNIT_TEST' in os.environ: self.funcs.update({'exception': self.func_exception}) |