├── .github ├── codespell_ignore_words.txt ├── dependabot.yml └── workflows │ ├── pre-commit.yml │ └── python-package.yml ├── .gitignore ├── .pre-commit-config.yaml ├── AUTHORS ├── CHANGES.rst ├── CITATION.bib ├── DEVELOPMENT.rst ├── LICENSE ├── MANIFEST.in ├── README.rst ├── dev-requirements.txt ├── docs ├── Makefile ├── conf.py ├── index.rst ├── make.bat ├── render_classes_0.18.0.png ├── render_classes_0.19.0.png ├── render_default_values_0.17.1.png ├── render_default_values_0.18.0.png ├── render_property_specs_0.22.0.png └── src │ ├── times_two.m │ └── times_two_napoleon.m ├── pyproject.toml ├── pytest.ini ├── readthedocs.yml ├── rtd-requirements.txt ├── setup.py ├── sphinxcontrib ├── __init__.py ├── mat_directives.py ├── mat_documenters.py ├── mat_lexer.py ├── mat_tree_sitter_parser.py ├── mat_types.py └── matlab.py ├── tests ├── helper.py ├── roots │ ├── test_autodoc │ │ ├── BaseClass.m │ │ ├── Makefile │ │ ├── baseFunction.m │ │ ├── conf.py │ │ ├── index.rst │ │ ├── index_classfolder.rst │ │ ├── index_package.rst │ │ ├── index_root.rst │ │ ├── index_submodule.rst │ │ ├── index_target.rst │ │ ├── make.bat │ │ ├── readme.txt │ │ └── target │ │ │ ├── +package │ │ │ ├── ClassBar.m │ │ │ └── funcFoo.m │ │ │ ├── @ClassFolder │ │ │ ├── ClassFolder.m │ │ │ ├── a_static_func.m │ │ │ └── classMethod.m │ │ │ ├── ClassExample.m │ │ │ ├── readme.txt │ │ │ └── submodule │ │ │ ├── ClassMeow.m │ │ │ └── funcMeow.m │ ├── test_classfolder │ │ ├── @First │ │ │ ├── First.m │ │ │ ├── dlls │ │ │ │ ├── mexfunction.dll │ │ │ │ └── mexfunction.m │ │ │ ├── method_in_folder.m │ │ │ └── private │ │ │ │ └── method_in_private.m │ │ ├── Makefile │ │ ├── conf.py │ │ ├── index.rst │ │ ├── index_first.rst │ │ ├── index_second.rst │ │ ├── index_third.rst │ │ ├── make.bat │ │ ├── readme.txt │ │ └── src │ │ │ ├── +pkg │ │ │ └── @Third │ │ │ │ ├── Third.m │ │ │ │ └── method_in_folder.m │ │ │ └── @Second │ │ │ ├── Second.m │ │ │ └── method_in_folder.m │ ├── test_duplicate_link │ │ ├── .gitignore │ │ ├── Makefile │ │ ├── _src │ │ │ └── +replab │ │ │ │ ├── Domain.m │ │ │ │ ├── FiniteGroup.m │ │ │ │ ├── Group.m │ │ │ │ ├── Monoid.m │ │ │ │ └── NiceFiniteGroup.m │ │ ├── base.rst │ │ ├── conf.py │ │ ├── groups.rst │ │ ├── index.rst │ │ └── make.bat │ ├── test_module_class_names │ │ ├── Makefile │ │ ├── Myclass │ │ │ ├── MyOtherClass │ │ │ │ └── MyOtherClass.m │ │ │ └── Myclass.m │ │ ├── YourClass.m │ │ ├── conf.py │ │ ├── index.rst │ │ ├── make.bat │ │ └── readme.txt │ ├── test_no_matlab_src_dir │ │ ├── Makefile │ │ ├── conf.py │ │ ├── index.rst │ │ ├── make.bat │ │ └── readme.txt │ ├── test_numad │ │ ├── Makefile │ │ ├── conf.py │ │ ├── index.rst │ │ ├── index_first.rst │ │ ├── index_second.rst │ │ ├── make.bat │ │ ├── readme.txt │ │ └── target │ │ │ ├── FirstClass.m │ │ │ ├── SecondClass.m │ │ │ └── readme.txt │ ├── test_package_links │ │ ├── +replab │ │ │ ├── Action.m │ │ │ └── Str.m │ │ ├── Makefile │ │ ├── conf.py │ │ ├── contents.rst │ │ └── make.bat │ ├── test_package_prefix │ │ ├── +package │ │ │ ├── +subpkg │ │ │ │ └── func.m │ │ │ └── func.m │ │ ├── Makefile │ │ ├── conf.py │ │ ├── index.rst │ │ └── make.bat │ ├── test_pymat │ │ ├── Makefile │ │ ├── conf.py │ │ ├── index.rst │ │ ├── make.bat │ │ ├── matsrc │ │ │ └── func.m │ │ └── pysrc │ │ │ └── func.py │ ├── test_pymat_common_root │ │ ├── Makefile │ │ ├── base │ │ │ ├── MatlabClass.m │ │ │ ├── PythonClass.py │ │ │ └── __init__.py │ │ ├── conf.py │ │ ├── index.rst │ │ └── make.bat │ └── test_skipping_module_members │ │ ├── Makefile │ │ ├── conf.py │ │ ├── index.rst │ │ ├── make.bat │ │ └── src │ │ ├── first.m │ │ └── second.m ├── test_autodoc.py ├── test_autodoc_properties.py ├── test_autodoc_short_links.py ├── test_classfolder.py ├── test_classfolder_class_name.py ├── test_data │ ├── +package │ │ └── package_func.m │ ├── @ClassFolder │ │ ├── ClassFolder.m │ │ ├── a_static_func.m │ │ └── classMethod.m │ ├── @ClassFolderUsingBuiltins │ │ └── ClassFolderUsingBuiltins.m │ ├── @ClassFolderWithoutClassDefinition │ │ └── no_class.m │ ├── @EmptyClassFolder │ │ └── readme.txt │ ├── @NestedClassFolder │ │ ├── NestedClassFolder.m │ │ ├── folder1 │ │ │ └── func.m │ │ ├── private │ │ │ └── private_function.m │ │ └── public_function.m │ ├── Application.mlapp │ ├── Bool.m │ ├── ClassAbstract.m │ ├── ClassBySource.m │ ├── ClassContainingParfor.m │ ├── ClassExample.m │ ├── ClassInheritHandle.m │ ├── ClassLongProperty.m │ ├── ClassWithAttributes.m │ ├── ClassWithBuiltinOverload.m │ ├── ClassWithBuiltinProperties.m │ ├── ClassWithCommentHeader.m │ ├── ClassWithDoubleQuotedString.m │ ├── ClassWithDummyArguments.m │ ├── ClassWithEllipsisProperties.m │ ├── ClassWithEndOfLineComment.m │ ├── ClassWithEnumMethod.m │ ├── ClassWithErrors.m │ ├── ClassWithEvent.m │ ├── ClassWithEventMethod.m │ ├── ClassWithFunctionArguments.m │ ├── ClassWithFunctionVariable.m │ ├── ClassWithGetMethod.m │ ├── ClassWithGetterSetter.m │ ├── ClassWithKeywordsAsFieldnames.m │ ├── ClassWithLineContinuation.m │ ├── ClassWithLongPropertyDocstrings.m │ ├── ClassWithLongPropertyTrailingEmptyDocstrings.m │ ├── ClassWithMethodAttributes.m │ ├── ClassWithMethodsWithSpaces.m │ ├── ClassWithNameMismatch.m │ ├── ClassWithPropertyAttributes.m │ ├── ClassWithPropertyCellValues.m │ ├── ClassWithPropertyValidators.m │ ├── ClassWithSeperatedComments.m │ ├── ClassWithStringEllipsis.m │ ├── ClassWithStrings.m │ ├── ClassWithTests.m │ ├── ClassWithTrailingCommentAfterBases.m │ ├── ClassWithTrailingSemicolons.m │ ├── ClassWithUndocumentedMembers.m │ ├── ClassWithUnknownAttributes.m │ ├── ClassWithoutIndent.m │ ├── PropTypeOld.m │ ├── ValidateProps.m │ ├── arguments.m │ ├── f_example.m │ ├── f_inputargs_error.m │ ├── f_no_input_no_output_no_parentheses.m │ ├── f_no_input_no_parentheses_no_docstring.m │ ├── f_with_comment_header.m │ ├── f_with_dummy_argument.m │ ├── f_with_function_variable.m │ ├── f_with_input_argument_block.m │ ├── f_with_latin_1.m │ ├── f_with_name_mismatch.m │ ├── f_with_nested_function.m │ ├── f_with_output_argument_block.m │ ├── f_with_string_ellipsis.m │ ├── f_with_utf8.m │ ├── readme.txt │ ├── script.m │ ├── script_with_comment_header.m │ ├── script_with_comment_header_2.m │ ├── script_with_comment_header_3.m │ ├── script_with_comment_header_4.m │ └── submodule │ │ ├── ClassInheritDifferentModules.m │ │ ├── TestFibonacci.m │ │ ├── f_comment_after_docstring.m │ │ ├── f_docstring_no_newline.m │ │ ├── f_ellipsis_after_equals.m │ │ ├── f_ellipsis_empty_output.m │ │ ├── f_ellipsis_in_comment.m │ │ ├── f_ellipsis_in_input.m │ │ ├── f_ellipsis_in_output.m │ │ ├── f_ellipsis_in_output_multiple.m │ │ ├── f_empty_output.m │ │ ├── f_no_docstring.m │ │ ├── f_no_input.m │ │ ├── f_no_input_parentheses.m │ │ ├── f_no_output.m │ │ ├── f_no_spaces.m │ │ └── f_with_tabs.m ├── test_docs │ ├── Makefile │ ├── conf.py │ ├── index.rst │ └── make.bat ├── test_docs_automodule │ ├── Makefile │ ├── conf.py │ ├── index.rst │ └── make.bat ├── test_duplicated_link.py ├── test_lexer.py ├── test_matlabify.py ├── test_module_class_names.py ├── test_no_matlab_src_dir.py ├── test_numad.py ├── test_package_links.py ├── test_package_prefix.py ├── test_parse_mfile.py ├── test_parse_mlappfile.py ├── test_pymat.py ├── test_pymat_common_root.py ├── test_shortest_name.py └── test_skipping_module_members.py └── tox.ini /.github/codespell_ignore_words.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-contrib/matlabdomain/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/pre-commit.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-contrib/matlabdomain/HEAD/.github/workflows/pre-commit.yml -------------------------------------------------------------------------------- /.github/workflows/python-package.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-contrib/matlabdomain/HEAD/.github/workflows/python-package.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-contrib/matlabdomain/HEAD/.gitignore -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-contrib/matlabdomain/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-contrib/matlabdomain/HEAD/AUTHORS -------------------------------------------------------------------------------- /CHANGES.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-contrib/matlabdomain/HEAD/CHANGES.rst -------------------------------------------------------------------------------- /CITATION.bib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-contrib/matlabdomain/HEAD/CITATION.bib -------------------------------------------------------------------------------- /DEVELOPMENT.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-contrib/matlabdomain/HEAD/DEVELOPMENT.rst -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-contrib/matlabdomain/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-contrib/matlabdomain/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-contrib/matlabdomain/HEAD/README.rst -------------------------------------------------------------------------------- /dev-requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-contrib/matlabdomain/HEAD/dev-requirements.txt -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-contrib/matlabdomain/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-contrib/matlabdomain/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-contrib/matlabdomain/HEAD/docs/index.rst -------------------------------------------------------------------------------- /docs/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-contrib/matlabdomain/HEAD/docs/make.bat -------------------------------------------------------------------------------- /docs/render_classes_0.18.0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-contrib/matlabdomain/HEAD/docs/render_classes_0.18.0.png -------------------------------------------------------------------------------- /docs/render_classes_0.19.0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-contrib/matlabdomain/HEAD/docs/render_classes_0.19.0.png -------------------------------------------------------------------------------- /docs/render_default_values_0.17.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-contrib/matlabdomain/HEAD/docs/render_default_values_0.17.1.png -------------------------------------------------------------------------------- /docs/render_default_values_0.18.0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-contrib/matlabdomain/HEAD/docs/render_default_values_0.18.0.png -------------------------------------------------------------------------------- /docs/render_property_specs_0.22.0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-contrib/matlabdomain/HEAD/docs/render_property_specs_0.22.0.png -------------------------------------------------------------------------------- /docs/src/times_two.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-contrib/matlabdomain/HEAD/docs/src/times_two.m -------------------------------------------------------------------------------- /docs/src/times_two_napoleon.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-contrib/matlabdomain/HEAD/docs/src/times_two_napoleon.m -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-contrib/matlabdomain/HEAD/pyproject.toml -------------------------------------------------------------------------------- /pytest.ini: -------------------------------------------------------------------------------- 1 | [pytest] 2 | addopts = --show-capture=all 3 | -------------------------------------------------------------------------------- /readthedocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-contrib/matlabdomain/HEAD/readthedocs.yml -------------------------------------------------------------------------------- /rtd-requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-contrib/matlabdomain/HEAD/rtd-requirements.txt -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-contrib/matlabdomain/HEAD/setup.py -------------------------------------------------------------------------------- /sphinxcontrib/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-contrib/matlabdomain/HEAD/sphinxcontrib/__init__.py -------------------------------------------------------------------------------- /sphinxcontrib/mat_directives.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-contrib/matlabdomain/HEAD/sphinxcontrib/mat_directives.py -------------------------------------------------------------------------------- /sphinxcontrib/mat_documenters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-contrib/matlabdomain/HEAD/sphinxcontrib/mat_documenters.py -------------------------------------------------------------------------------- /sphinxcontrib/mat_lexer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-contrib/matlabdomain/HEAD/sphinxcontrib/mat_lexer.py -------------------------------------------------------------------------------- /sphinxcontrib/mat_tree_sitter_parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-contrib/matlabdomain/HEAD/sphinxcontrib/mat_tree_sitter_parser.py -------------------------------------------------------------------------------- /sphinxcontrib/mat_types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-contrib/matlabdomain/HEAD/sphinxcontrib/mat_types.py -------------------------------------------------------------------------------- /sphinxcontrib/matlab.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-contrib/matlabdomain/HEAD/sphinxcontrib/matlab.py -------------------------------------------------------------------------------- /tests/helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-contrib/matlabdomain/HEAD/tests/helper.py -------------------------------------------------------------------------------- /tests/roots/test_autodoc/BaseClass.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-contrib/matlabdomain/HEAD/tests/roots/test_autodoc/BaseClass.m -------------------------------------------------------------------------------- /tests/roots/test_autodoc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-contrib/matlabdomain/HEAD/tests/roots/test_autodoc/Makefile -------------------------------------------------------------------------------- /tests/roots/test_autodoc/baseFunction.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-contrib/matlabdomain/HEAD/tests/roots/test_autodoc/baseFunction.m -------------------------------------------------------------------------------- /tests/roots/test_autodoc/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-contrib/matlabdomain/HEAD/tests/roots/test_autodoc/conf.py -------------------------------------------------------------------------------- /tests/roots/test_autodoc/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-contrib/matlabdomain/HEAD/tests/roots/test_autodoc/index.rst -------------------------------------------------------------------------------- /tests/roots/test_autodoc/index_classfolder.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-contrib/matlabdomain/HEAD/tests/roots/test_autodoc/index_classfolder.rst -------------------------------------------------------------------------------- /tests/roots/test_autodoc/index_package.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-contrib/matlabdomain/HEAD/tests/roots/test_autodoc/index_package.rst -------------------------------------------------------------------------------- /tests/roots/test_autodoc/index_root.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-contrib/matlabdomain/HEAD/tests/roots/test_autodoc/index_root.rst -------------------------------------------------------------------------------- /tests/roots/test_autodoc/index_submodule.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-contrib/matlabdomain/HEAD/tests/roots/test_autodoc/index_submodule.rst -------------------------------------------------------------------------------- /tests/roots/test_autodoc/index_target.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-contrib/matlabdomain/HEAD/tests/roots/test_autodoc/index_target.rst -------------------------------------------------------------------------------- /tests/roots/test_autodoc/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-contrib/matlabdomain/HEAD/tests/roots/test_autodoc/make.bat -------------------------------------------------------------------------------- /tests/roots/test_autodoc/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-contrib/matlabdomain/HEAD/tests/roots/test_autodoc/readme.txt -------------------------------------------------------------------------------- /tests/roots/test_autodoc/target/+package/ClassBar.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-contrib/matlabdomain/HEAD/tests/roots/test_autodoc/target/+package/ClassBar.m -------------------------------------------------------------------------------- /tests/roots/test_autodoc/target/+package/funcFoo.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-contrib/matlabdomain/HEAD/tests/roots/test_autodoc/target/+package/funcFoo.m -------------------------------------------------------------------------------- /tests/roots/test_autodoc/target/@ClassFolder/ClassFolder.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-contrib/matlabdomain/HEAD/tests/roots/test_autodoc/target/@ClassFolder/ClassFolder.m -------------------------------------------------------------------------------- /tests/roots/test_autodoc/target/@ClassFolder/a_static_func.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-contrib/matlabdomain/HEAD/tests/roots/test_autodoc/target/@ClassFolder/a_static_func.m -------------------------------------------------------------------------------- /tests/roots/test_autodoc/target/@ClassFolder/classMethod.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-contrib/matlabdomain/HEAD/tests/roots/test_autodoc/target/@ClassFolder/classMethod.m -------------------------------------------------------------------------------- /tests/roots/test_autodoc/target/ClassExample.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-contrib/matlabdomain/HEAD/tests/roots/test_autodoc/target/ClassExample.m -------------------------------------------------------------------------------- /tests/roots/test_autodoc/target/readme.txt: -------------------------------------------------------------------------------- 1 | Here we test basic entities that can be documented 2 | 3 | * 4 | -------------------------------------------------------------------------------- /tests/roots/test_autodoc/target/submodule/ClassMeow.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-contrib/matlabdomain/HEAD/tests/roots/test_autodoc/target/submodule/ClassMeow.m -------------------------------------------------------------------------------- /tests/roots/test_autodoc/target/submodule/funcMeow.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-contrib/matlabdomain/HEAD/tests/roots/test_autodoc/target/submodule/funcMeow.m -------------------------------------------------------------------------------- /tests/roots/test_classfolder/@First/First.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-contrib/matlabdomain/HEAD/tests/roots/test_classfolder/@First/First.m -------------------------------------------------------------------------------- /tests/roots/test_classfolder/@First/dlls/mexfunction.dll: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/roots/test_classfolder/@First/dlls/mexfunction.m: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/roots/test_classfolder/@First/method_in_folder.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-contrib/matlabdomain/HEAD/tests/roots/test_classfolder/@First/method_in_folder.m -------------------------------------------------------------------------------- /tests/roots/test_classfolder/@First/private/method_in_private.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-contrib/matlabdomain/HEAD/tests/roots/test_classfolder/@First/private/method_in_private.m -------------------------------------------------------------------------------- /tests/roots/test_classfolder/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-contrib/matlabdomain/HEAD/tests/roots/test_classfolder/Makefile -------------------------------------------------------------------------------- /tests/roots/test_classfolder/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-contrib/matlabdomain/HEAD/tests/roots/test_classfolder/conf.py -------------------------------------------------------------------------------- /tests/roots/test_classfolder/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-contrib/matlabdomain/HEAD/tests/roots/test_classfolder/index.rst -------------------------------------------------------------------------------- /tests/roots/test_classfolder/index_first.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-contrib/matlabdomain/HEAD/tests/roots/test_classfolder/index_first.rst -------------------------------------------------------------------------------- /tests/roots/test_classfolder/index_second.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-contrib/matlabdomain/HEAD/tests/roots/test_classfolder/index_second.rst -------------------------------------------------------------------------------- /tests/roots/test_classfolder/index_third.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-contrib/matlabdomain/HEAD/tests/roots/test_classfolder/index_third.rst -------------------------------------------------------------------------------- /tests/roots/test_classfolder/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-contrib/matlabdomain/HEAD/tests/roots/test_classfolder/make.bat -------------------------------------------------------------------------------- /tests/roots/test_classfolder/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-contrib/matlabdomain/HEAD/tests/roots/test_classfolder/readme.txt -------------------------------------------------------------------------------- /tests/roots/test_classfolder/src/+pkg/@Third/Third.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-contrib/matlabdomain/HEAD/tests/roots/test_classfolder/src/+pkg/@Third/Third.m -------------------------------------------------------------------------------- /tests/roots/test_classfolder/src/+pkg/@Third/method_in_folder.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-contrib/matlabdomain/HEAD/tests/roots/test_classfolder/src/+pkg/@Third/method_in_folder.m -------------------------------------------------------------------------------- /tests/roots/test_classfolder/src/@Second/Second.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-contrib/matlabdomain/HEAD/tests/roots/test_classfolder/src/@Second/Second.m -------------------------------------------------------------------------------- /tests/roots/test_classfolder/src/@Second/method_in_folder.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-contrib/matlabdomain/HEAD/tests/roots/test_classfolder/src/@Second/method_in_folder.m -------------------------------------------------------------------------------- /tests/roots/test_duplicate_link/.gitignore: -------------------------------------------------------------------------------- 1 | _build/ 2 | -------------------------------------------------------------------------------- /tests/roots/test_duplicate_link/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-contrib/matlabdomain/HEAD/tests/roots/test_duplicate_link/Makefile -------------------------------------------------------------------------------- /tests/roots/test_duplicate_link/_src/+replab/Domain.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-contrib/matlabdomain/HEAD/tests/roots/test_duplicate_link/_src/+replab/Domain.m -------------------------------------------------------------------------------- /tests/roots/test_duplicate_link/_src/+replab/FiniteGroup.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-contrib/matlabdomain/HEAD/tests/roots/test_duplicate_link/_src/+replab/FiniteGroup.m -------------------------------------------------------------------------------- /tests/roots/test_duplicate_link/_src/+replab/Group.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-contrib/matlabdomain/HEAD/tests/roots/test_duplicate_link/_src/+replab/Group.m -------------------------------------------------------------------------------- /tests/roots/test_duplicate_link/_src/+replab/Monoid.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-contrib/matlabdomain/HEAD/tests/roots/test_duplicate_link/_src/+replab/Monoid.m -------------------------------------------------------------------------------- /tests/roots/test_duplicate_link/_src/+replab/NiceFiniteGroup.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-contrib/matlabdomain/HEAD/tests/roots/test_duplicate_link/_src/+replab/NiceFiniteGroup.m -------------------------------------------------------------------------------- /tests/roots/test_duplicate_link/base.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-contrib/matlabdomain/HEAD/tests/roots/test_duplicate_link/base.rst -------------------------------------------------------------------------------- /tests/roots/test_duplicate_link/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-contrib/matlabdomain/HEAD/tests/roots/test_duplicate_link/conf.py -------------------------------------------------------------------------------- /tests/roots/test_duplicate_link/groups.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-contrib/matlabdomain/HEAD/tests/roots/test_duplicate_link/groups.rst -------------------------------------------------------------------------------- /tests/roots/test_duplicate_link/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-contrib/matlabdomain/HEAD/tests/roots/test_duplicate_link/index.rst -------------------------------------------------------------------------------- /tests/roots/test_duplicate_link/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-contrib/matlabdomain/HEAD/tests/roots/test_duplicate_link/make.bat -------------------------------------------------------------------------------- /tests/roots/test_module_class_names/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-contrib/matlabdomain/HEAD/tests/roots/test_module_class_names/Makefile -------------------------------------------------------------------------------- /tests/roots/test_module_class_names/Myclass/MyOtherClass/MyOtherClass.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-contrib/matlabdomain/HEAD/tests/roots/test_module_class_names/Myclass/MyOtherClass/MyOtherClass.m -------------------------------------------------------------------------------- /tests/roots/test_module_class_names/Myclass/Myclass.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-contrib/matlabdomain/HEAD/tests/roots/test_module_class_names/Myclass/Myclass.m -------------------------------------------------------------------------------- /tests/roots/test_module_class_names/YourClass.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-contrib/matlabdomain/HEAD/tests/roots/test_module_class_names/YourClass.m -------------------------------------------------------------------------------- /tests/roots/test_module_class_names/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-contrib/matlabdomain/HEAD/tests/roots/test_module_class_names/conf.py -------------------------------------------------------------------------------- /tests/roots/test_module_class_names/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-contrib/matlabdomain/HEAD/tests/roots/test_module_class_names/index.rst -------------------------------------------------------------------------------- /tests/roots/test_module_class_names/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-contrib/matlabdomain/HEAD/tests/roots/test_module_class_names/make.bat -------------------------------------------------------------------------------- /tests/roots/test_module_class_names/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-contrib/matlabdomain/HEAD/tests/roots/test_module_class_names/readme.txt -------------------------------------------------------------------------------- /tests/roots/test_no_matlab_src_dir/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-contrib/matlabdomain/HEAD/tests/roots/test_no_matlab_src_dir/Makefile -------------------------------------------------------------------------------- /tests/roots/test_no_matlab_src_dir/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-contrib/matlabdomain/HEAD/tests/roots/test_no_matlab_src_dir/conf.py -------------------------------------------------------------------------------- /tests/roots/test_no_matlab_src_dir/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-contrib/matlabdomain/HEAD/tests/roots/test_no_matlab_src_dir/index.rst -------------------------------------------------------------------------------- /tests/roots/test_no_matlab_src_dir/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-contrib/matlabdomain/HEAD/tests/roots/test_no_matlab_src_dir/make.bat -------------------------------------------------------------------------------- /tests/roots/test_no_matlab_src_dir/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-contrib/matlabdomain/HEAD/tests/roots/test_no_matlab_src_dir/readme.txt -------------------------------------------------------------------------------- /tests/roots/test_numad/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-contrib/matlabdomain/HEAD/tests/roots/test_numad/Makefile -------------------------------------------------------------------------------- /tests/roots/test_numad/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-contrib/matlabdomain/HEAD/tests/roots/test_numad/conf.py -------------------------------------------------------------------------------- /tests/roots/test_numad/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-contrib/matlabdomain/HEAD/tests/roots/test_numad/index.rst -------------------------------------------------------------------------------- /tests/roots/test_numad/index_first.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-contrib/matlabdomain/HEAD/tests/roots/test_numad/index_first.rst -------------------------------------------------------------------------------- /tests/roots/test_numad/index_second.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-contrib/matlabdomain/HEAD/tests/roots/test_numad/index_second.rst -------------------------------------------------------------------------------- /tests/roots/test_numad/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-contrib/matlabdomain/HEAD/tests/roots/test_numad/make.bat -------------------------------------------------------------------------------- /tests/roots/test_numad/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-contrib/matlabdomain/HEAD/tests/roots/test_numad/readme.txt -------------------------------------------------------------------------------- /tests/roots/test_numad/target/FirstClass.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-contrib/matlabdomain/HEAD/tests/roots/test_numad/target/FirstClass.m -------------------------------------------------------------------------------- /tests/roots/test_numad/target/SecondClass.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-contrib/matlabdomain/HEAD/tests/roots/test_numad/target/SecondClass.m -------------------------------------------------------------------------------- /tests/roots/test_numad/target/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-contrib/matlabdomain/HEAD/tests/roots/test_numad/target/readme.txt -------------------------------------------------------------------------------- /tests/roots/test_package_links/+replab/Action.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-contrib/matlabdomain/HEAD/tests/roots/test_package_links/+replab/Action.m -------------------------------------------------------------------------------- /tests/roots/test_package_links/+replab/Str.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-contrib/matlabdomain/HEAD/tests/roots/test_package_links/+replab/Str.m -------------------------------------------------------------------------------- /tests/roots/test_package_links/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-contrib/matlabdomain/HEAD/tests/roots/test_package_links/Makefile -------------------------------------------------------------------------------- /tests/roots/test_package_links/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-contrib/matlabdomain/HEAD/tests/roots/test_package_links/conf.py -------------------------------------------------------------------------------- /tests/roots/test_package_links/contents.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-contrib/matlabdomain/HEAD/tests/roots/test_package_links/contents.rst -------------------------------------------------------------------------------- /tests/roots/test_package_links/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-contrib/matlabdomain/HEAD/tests/roots/test_package_links/make.bat -------------------------------------------------------------------------------- /tests/roots/test_package_prefix/+package/+subpkg/func.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-contrib/matlabdomain/HEAD/tests/roots/test_package_prefix/+package/+subpkg/func.m -------------------------------------------------------------------------------- /tests/roots/test_package_prefix/+package/func.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-contrib/matlabdomain/HEAD/tests/roots/test_package_prefix/+package/func.m -------------------------------------------------------------------------------- /tests/roots/test_package_prefix/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-contrib/matlabdomain/HEAD/tests/roots/test_package_prefix/Makefile -------------------------------------------------------------------------------- /tests/roots/test_package_prefix/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-contrib/matlabdomain/HEAD/tests/roots/test_package_prefix/conf.py -------------------------------------------------------------------------------- /tests/roots/test_package_prefix/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-contrib/matlabdomain/HEAD/tests/roots/test_package_prefix/index.rst -------------------------------------------------------------------------------- /tests/roots/test_package_prefix/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-contrib/matlabdomain/HEAD/tests/roots/test_package_prefix/make.bat -------------------------------------------------------------------------------- /tests/roots/test_pymat/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-contrib/matlabdomain/HEAD/tests/roots/test_pymat/Makefile -------------------------------------------------------------------------------- /tests/roots/test_pymat/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-contrib/matlabdomain/HEAD/tests/roots/test_pymat/conf.py -------------------------------------------------------------------------------- /tests/roots/test_pymat/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-contrib/matlabdomain/HEAD/tests/roots/test_pymat/index.rst -------------------------------------------------------------------------------- /tests/roots/test_pymat/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-contrib/matlabdomain/HEAD/tests/roots/test_pymat/make.bat -------------------------------------------------------------------------------- /tests/roots/test_pymat/matsrc/func.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-contrib/matlabdomain/HEAD/tests/roots/test_pymat/matsrc/func.m -------------------------------------------------------------------------------- /tests/roots/test_pymat/pysrc/func.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-contrib/matlabdomain/HEAD/tests/roots/test_pymat/pysrc/func.py -------------------------------------------------------------------------------- /tests/roots/test_pymat_common_root/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-contrib/matlabdomain/HEAD/tests/roots/test_pymat_common_root/Makefile -------------------------------------------------------------------------------- /tests/roots/test_pymat_common_root/base/MatlabClass.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-contrib/matlabdomain/HEAD/tests/roots/test_pymat_common_root/base/MatlabClass.m -------------------------------------------------------------------------------- /tests/roots/test_pymat_common_root/base/PythonClass.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-contrib/matlabdomain/HEAD/tests/roots/test_pymat_common_root/base/PythonClass.py -------------------------------------------------------------------------------- /tests/roots/test_pymat_common_root/base/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/roots/test_pymat_common_root/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-contrib/matlabdomain/HEAD/tests/roots/test_pymat_common_root/conf.py -------------------------------------------------------------------------------- /tests/roots/test_pymat_common_root/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-contrib/matlabdomain/HEAD/tests/roots/test_pymat_common_root/index.rst -------------------------------------------------------------------------------- /tests/roots/test_pymat_common_root/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-contrib/matlabdomain/HEAD/tests/roots/test_pymat_common_root/make.bat -------------------------------------------------------------------------------- /tests/roots/test_skipping_module_members/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-contrib/matlabdomain/HEAD/tests/roots/test_skipping_module_members/Makefile -------------------------------------------------------------------------------- /tests/roots/test_skipping_module_members/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-contrib/matlabdomain/HEAD/tests/roots/test_skipping_module_members/conf.py -------------------------------------------------------------------------------- /tests/roots/test_skipping_module_members/index.rst: -------------------------------------------------------------------------------- 1 | .. automodule:: src 2 | :members: 3 | -------------------------------------------------------------------------------- /tests/roots/test_skipping_module_members/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-contrib/matlabdomain/HEAD/tests/roots/test_skipping_module_members/make.bat -------------------------------------------------------------------------------- /tests/roots/test_skipping_module_members/src/first.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-contrib/matlabdomain/HEAD/tests/roots/test_skipping_module_members/src/first.m -------------------------------------------------------------------------------- /tests/roots/test_skipping_module_members/src/second.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-contrib/matlabdomain/HEAD/tests/roots/test_skipping_module_members/src/second.m -------------------------------------------------------------------------------- /tests/test_autodoc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-contrib/matlabdomain/HEAD/tests/test_autodoc.py -------------------------------------------------------------------------------- /tests/test_autodoc_properties.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-contrib/matlabdomain/HEAD/tests/test_autodoc_properties.py -------------------------------------------------------------------------------- /tests/test_autodoc_short_links.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-contrib/matlabdomain/HEAD/tests/test_autodoc_short_links.py -------------------------------------------------------------------------------- /tests/test_classfolder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-contrib/matlabdomain/HEAD/tests/test_classfolder.py -------------------------------------------------------------------------------- /tests/test_classfolder_class_name.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-contrib/matlabdomain/HEAD/tests/test_classfolder_class_name.py -------------------------------------------------------------------------------- /tests/test_data/+package/package_func.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-contrib/matlabdomain/HEAD/tests/test_data/+package/package_func.m -------------------------------------------------------------------------------- /tests/test_data/@ClassFolder/ClassFolder.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-contrib/matlabdomain/HEAD/tests/test_data/@ClassFolder/ClassFolder.m -------------------------------------------------------------------------------- /tests/test_data/@ClassFolder/a_static_func.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-contrib/matlabdomain/HEAD/tests/test_data/@ClassFolder/a_static_func.m -------------------------------------------------------------------------------- /tests/test_data/@ClassFolder/classMethod.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-contrib/matlabdomain/HEAD/tests/test_data/@ClassFolder/classMethod.m -------------------------------------------------------------------------------- /tests/test_data/@ClassFolderUsingBuiltins/ClassFolderUsingBuiltins.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-contrib/matlabdomain/HEAD/tests/test_data/@ClassFolderUsingBuiltins/ClassFolderUsingBuiltins.m -------------------------------------------------------------------------------- /tests/test_data/@ClassFolderWithoutClassDefinition/no_class.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-contrib/matlabdomain/HEAD/tests/test_data/@ClassFolderWithoutClassDefinition/no_class.m -------------------------------------------------------------------------------- /tests/test_data/@EmptyClassFolder/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-contrib/matlabdomain/HEAD/tests/test_data/@EmptyClassFolder/readme.txt -------------------------------------------------------------------------------- /tests/test_data/@NestedClassFolder/NestedClassFolder.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-contrib/matlabdomain/HEAD/tests/test_data/@NestedClassFolder/NestedClassFolder.m -------------------------------------------------------------------------------- /tests/test_data/@NestedClassFolder/folder1/func.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-contrib/matlabdomain/HEAD/tests/test_data/@NestedClassFolder/folder1/func.m -------------------------------------------------------------------------------- /tests/test_data/@NestedClassFolder/private/private_function.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-contrib/matlabdomain/HEAD/tests/test_data/@NestedClassFolder/private/private_function.m -------------------------------------------------------------------------------- /tests/test_data/@NestedClassFolder/public_function.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-contrib/matlabdomain/HEAD/tests/test_data/@NestedClassFolder/public_function.m -------------------------------------------------------------------------------- /tests/test_data/Application.mlapp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-contrib/matlabdomain/HEAD/tests/test_data/Application.mlapp -------------------------------------------------------------------------------- /tests/test_data/Bool.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-contrib/matlabdomain/HEAD/tests/test_data/Bool.m -------------------------------------------------------------------------------- /tests/test_data/ClassAbstract.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-contrib/matlabdomain/HEAD/tests/test_data/ClassAbstract.m -------------------------------------------------------------------------------- /tests/test_data/ClassBySource.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-contrib/matlabdomain/HEAD/tests/test_data/ClassBySource.m -------------------------------------------------------------------------------- /tests/test_data/ClassContainingParfor.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-contrib/matlabdomain/HEAD/tests/test_data/ClassContainingParfor.m -------------------------------------------------------------------------------- /tests/test_data/ClassExample.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-contrib/matlabdomain/HEAD/tests/test_data/ClassExample.m -------------------------------------------------------------------------------- /tests/test_data/ClassInheritHandle.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-contrib/matlabdomain/HEAD/tests/test_data/ClassInheritHandle.m -------------------------------------------------------------------------------- /tests/test_data/ClassLongProperty.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-contrib/matlabdomain/HEAD/tests/test_data/ClassLongProperty.m -------------------------------------------------------------------------------- /tests/test_data/ClassWithAttributes.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-contrib/matlabdomain/HEAD/tests/test_data/ClassWithAttributes.m -------------------------------------------------------------------------------- /tests/test_data/ClassWithBuiltinOverload.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-contrib/matlabdomain/HEAD/tests/test_data/ClassWithBuiltinOverload.m -------------------------------------------------------------------------------- /tests/test_data/ClassWithBuiltinProperties.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-contrib/matlabdomain/HEAD/tests/test_data/ClassWithBuiltinProperties.m -------------------------------------------------------------------------------- /tests/test_data/ClassWithCommentHeader.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-contrib/matlabdomain/HEAD/tests/test_data/ClassWithCommentHeader.m -------------------------------------------------------------------------------- /tests/test_data/ClassWithDoubleQuotedString.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-contrib/matlabdomain/HEAD/tests/test_data/ClassWithDoubleQuotedString.m -------------------------------------------------------------------------------- /tests/test_data/ClassWithDummyArguments.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-contrib/matlabdomain/HEAD/tests/test_data/ClassWithDummyArguments.m -------------------------------------------------------------------------------- /tests/test_data/ClassWithEllipsisProperties.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-contrib/matlabdomain/HEAD/tests/test_data/ClassWithEllipsisProperties.m -------------------------------------------------------------------------------- /tests/test_data/ClassWithEndOfLineComment.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-contrib/matlabdomain/HEAD/tests/test_data/ClassWithEndOfLineComment.m -------------------------------------------------------------------------------- /tests/test_data/ClassWithEnumMethod.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-contrib/matlabdomain/HEAD/tests/test_data/ClassWithEnumMethod.m -------------------------------------------------------------------------------- /tests/test_data/ClassWithErrors.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-contrib/matlabdomain/HEAD/tests/test_data/ClassWithErrors.m -------------------------------------------------------------------------------- /tests/test_data/ClassWithEvent.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-contrib/matlabdomain/HEAD/tests/test_data/ClassWithEvent.m -------------------------------------------------------------------------------- /tests/test_data/ClassWithEventMethod.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-contrib/matlabdomain/HEAD/tests/test_data/ClassWithEventMethod.m -------------------------------------------------------------------------------- /tests/test_data/ClassWithFunctionArguments.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-contrib/matlabdomain/HEAD/tests/test_data/ClassWithFunctionArguments.m -------------------------------------------------------------------------------- /tests/test_data/ClassWithFunctionVariable.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-contrib/matlabdomain/HEAD/tests/test_data/ClassWithFunctionVariable.m -------------------------------------------------------------------------------- /tests/test_data/ClassWithGetMethod.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-contrib/matlabdomain/HEAD/tests/test_data/ClassWithGetMethod.m -------------------------------------------------------------------------------- /tests/test_data/ClassWithGetterSetter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-contrib/matlabdomain/HEAD/tests/test_data/ClassWithGetterSetter.m -------------------------------------------------------------------------------- /tests/test_data/ClassWithKeywordsAsFieldnames.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-contrib/matlabdomain/HEAD/tests/test_data/ClassWithKeywordsAsFieldnames.m -------------------------------------------------------------------------------- /tests/test_data/ClassWithLineContinuation.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-contrib/matlabdomain/HEAD/tests/test_data/ClassWithLineContinuation.m -------------------------------------------------------------------------------- /tests/test_data/ClassWithLongPropertyDocstrings.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-contrib/matlabdomain/HEAD/tests/test_data/ClassWithLongPropertyDocstrings.m -------------------------------------------------------------------------------- /tests/test_data/ClassWithLongPropertyTrailingEmptyDocstrings.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-contrib/matlabdomain/HEAD/tests/test_data/ClassWithLongPropertyTrailingEmptyDocstrings.m -------------------------------------------------------------------------------- /tests/test_data/ClassWithMethodAttributes.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-contrib/matlabdomain/HEAD/tests/test_data/ClassWithMethodAttributes.m -------------------------------------------------------------------------------- /tests/test_data/ClassWithMethodsWithSpaces.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-contrib/matlabdomain/HEAD/tests/test_data/ClassWithMethodsWithSpaces.m -------------------------------------------------------------------------------- /tests/test_data/ClassWithNameMismatch.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-contrib/matlabdomain/HEAD/tests/test_data/ClassWithNameMismatch.m -------------------------------------------------------------------------------- /tests/test_data/ClassWithPropertyAttributes.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-contrib/matlabdomain/HEAD/tests/test_data/ClassWithPropertyAttributes.m -------------------------------------------------------------------------------- /tests/test_data/ClassWithPropertyCellValues.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-contrib/matlabdomain/HEAD/tests/test_data/ClassWithPropertyCellValues.m -------------------------------------------------------------------------------- /tests/test_data/ClassWithPropertyValidators.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-contrib/matlabdomain/HEAD/tests/test_data/ClassWithPropertyValidators.m -------------------------------------------------------------------------------- /tests/test_data/ClassWithSeperatedComments.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-contrib/matlabdomain/HEAD/tests/test_data/ClassWithSeperatedComments.m -------------------------------------------------------------------------------- /tests/test_data/ClassWithStringEllipsis.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-contrib/matlabdomain/HEAD/tests/test_data/ClassWithStringEllipsis.m -------------------------------------------------------------------------------- /tests/test_data/ClassWithStrings.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-contrib/matlabdomain/HEAD/tests/test_data/ClassWithStrings.m -------------------------------------------------------------------------------- /tests/test_data/ClassWithTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-contrib/matlabdomain/HEAD/tests/test_data/ClassWithTests.m -------------------------------------------------------------------------------- /tests/test_data/ClassWithTrailingCommentAfterBases.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-contrib/matlabdomain/HEAD/tests/test_data/ClassWithTrailingCommentAfterBases.m -------------------------------------------------------------------------------- /tests/test_data/ClassWithTrailingSemicolons.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-contrib/matlabdomain/HEAD/tests/test_data/ClassWithTrailingSemicolons.m -------------------------------------------------------------------------------- /tests/test_data/ClassWithUndocumentedMembers.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-contrib/matlabdomain/HEAD/tests/test_data/ClassWithUndocumentedMembers.m -------------------------------------------------------------------------------- /tests/test_data/ClassWithUnknownAttributes.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-contrib/matlabdomain/HEAD/tests/test_data/ClassWithUnknownAttributes.m -------------------------------------------------------------------------------- /tests/test_data/ClassWithoutIndent.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-contrib/matlabdomain/HEAD/tests/test_data/ClassWithoutIndent.m -------------------------------------------------------------------------------- /tests/test_data/PropTypeOld.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-contrib/matlabdomain/HEAD/tests/test_data/PropTypeOld.m -------------------------------------------------------------------------------- /tests/test_data/ValidateProps.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-contrib/matlabdomain/HEAD/tests/test_data/ValidateProps.m -------------------------------------------------------------------------------- /tests/test_data/arguments.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-contrib/matlabdomain/HEAD/tests/test_data/arguments.m -------------------------------------------------------------------------------- /tests/test_data/f_example.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-contrib/matlabdomain/HEAD/tests/test_data/f_example.m -------------------------------------------------------------------------------- /tests/test_data/f_inputargs_error.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-contrib/matlabdomain/HEAD/tests/test_data/f_inputargs_error.m -------------------------------------------------------------------------------- /tests/test_data/f_no_input_no_output_no_parentheses.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-contrib/matlabdomain/HEAD/tests/test_data/f_no_input_no_output_no_parentheses.m -------------------------------------------------------------------------------- /tests/test_data/f_no_input_no_parentheses_no_docstring.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-contrib/matlabdomain/HEAD/tests/test_data/f_no_input_no_parentheses_no_docstring.m -------------------------------------------------------------------------------- /tests/test_data/f_with_comment_header.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-contrib/matlabdomain/HEAD/tests/test_data/f_with_comment_header.m -------------------------------------------------------------------------------- /tests/test_data/f_with_dummy_argument.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-contrib/matlabdomain/HEAD/tests/test_data/f_with_dummy_argument.m -------------------------------------------------------------------------------- /tests/test_data/f_with_function_variable.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-contrib/matlabdomain/HEAD/tests/test_data/f_with_function_variable.m -------------------------------------------------------------------------------- /tests/test_data/f_with_input_argument_block.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-contrib/matlabdomain/HEAD/tests/test_data/f_with_input_argument_block.m -------------------------------------------------------------------------------- /tests/test_data/f_with_latin_1.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-contrib/matlabdomain/HEAD/tests/test_data/f_with_latin_1.m -------------------------------------------------------------------------------- /tests/test_data/f_with_name_mismatch.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-contrib/matlabdomain/HEAD/tests/test_data/f_with_name_mismatch.m -------------------------------------------------------------------------------- /tests/test_data/f_with_nested_function.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-contrib/matlabdomain/HEAD/tests/test_data/f_with_nested_function.m -------------------------------------------------------------------------------- /tests/test_data/f_with_output_argument_block.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-contrib/matlabdomain/HEAD/tests/test_data/f_with_output_argument_block.m -------------------------------------------------------------------------------- /tests/test_data/f_with_string_ellipsis.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-contrib/matlabdomain/HEAD/tests/test_data/f_with_string_ellipsis.m -------------------------------------------------------------------------------- /tests/test_data/f_with_utf8.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-contrib/matlabdomain/HEAD/tests/test_data/f_with_utf8.m -------------------------------------------------------------------------------- /tests/test_data/readme.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test_data/script.m: -------------------------------------------------------------------------------- 1 | % A script calling other functions 2 | [o1, o2, o3] = f_example(10, 31); 3 | -------------------------------------------------------------------------------- /tests/test_data/script_with_comment_header.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-contrib/matlabdomain/HEAD/tests/test_data/script_with_comment_header.m -------------------------------------------------------------------------------- /tests/test_data/script_with_comment_header_2.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-contrib/matlabdomain/HEAD/tests/test_data/script_with_comment_header_2.m -------------------------------------------------------------------------------- /tests/test_data/script_with_comment_header_3.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-contrib/matlabdomain/HEAD/tests/test_data/script_with_comment_header_3.m -------------------------------------------------------------------------------- /tests/test_data/script_with_comment_header_4.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-contrib/matlabdomain/HEAD/tests/test_data/script_with_comment_header_4.m -------------------------------------------------------------------------------- /tests/test_data/submodule/ClassInheritDifferentModules.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-contrib/matlabdomain/HEAD/tests/test_data/submodule/ClassInheritDifferentModules.m -------------------------------------------------------------------------------- /tests/test_data/submodule/TestFibonacci.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-contrib/matlabdomain/HEAD/tests/test_data/submodule/TestFibonacci.m -------------------------------------------------------------------------------- /tests/test_data/submodule/f_comment_after_docstring.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-contrib/matlabdomain/HEAD/tests/test_data/submodule/f_comment_after_docstring.m -------------------------------------------------------------------------------- /tests/test_data/submodule/f_docstring_no_newline.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-contrib/matlabdomain/HEAD/tests/test_data/submodule/f_docstring_no_newline.m -------------------------------------------------------------------------------- /tests/test_data/submodule/f_ellipsis_after_equals.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-contrib/matlabdomain/HEAD/tests/test_data/submodule/f_ellipsis_after_equals.m -------------------------------------------------------------------------------- /tests/test_data/submodule/f_ellipsis_empty_output.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-contrib/matlabdomain/HEAD/tests/test_data/submodule/f_ellipsis_empty_output.m -------------------------------------------------------------------------------- /tests/test_data/submodule/f_ellipsis_in_comment.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-contrib/matlabdomain/HEAD/tests/test_data/submodule/f_ellipsis_in_comment.m -------------------------------------------------------------------------------- /tests/test_data/submodule/f_ellipsis_in_input.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-contrib/matlabdomain/HEAD/tests/test_data/submodule/f_ellipsis_in_input.m -------------------------------------------------------------------------------- /tests/test_data/submodule/f_ellipsis_in_output.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-contrib/matlabdomain/HEAD/tests/test_data/submodule/f_ellipsis_in_output.m -------------------------------------------------------------------------------- /tests/test_data/submodule/f_ellipsis_in_output_multiple.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-contrib/matlabdomain/HEAD/tests/test_data/submodule/f_ellipsis_in_output_multiple.m -------------------------------------------------------------------------------- /tests/test_data/submodule/f_empty_output.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-contrib/matlabdomain/HEAD/tests/test_data/submodule/f_empty_output.m -------------------------------------------------------------------------------- /tests/test_data/submodule/f_no_docstring.m: -------------------------------------------------------------------------------- 1 | function y = f_no_docstring() 2 | 3 | y = 42; 4 | -------------------------------------------------------------------------------- /tests/test_data/submodule/f_no_input.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-contrib/matlabdomain/HEAD/tests/test_data/submodule/f_no_input.m -------------------------------------------------------------------------------- /tests/test_data/submodule/f_no_input_parentheses.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-contrib/matlabdomain/HEAD/tests/test_data/submodule/f_no_input_parentheses.m -------------------------------------------------------------------------------- /tests/test_data/submodule/f_no_output.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-contrib/matlabdomain/HEAD/tests/test_data/submodule/f_no_output.m -------------------------------------------------------------------------------- /tests/test_data/submodule/f_no_spaces.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-contrib/matlabdomain/HEAD/tests/test_data/submodule/f_no_spaces.m -------------------------------------------------------------------------------- /tests/test_data/submodule/f_with_tabs.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-contrib/matlabdomain/HEAD/tests/test_data/submodule/f_with_tabs.m -------------------------------------------------------------------------------- /tests/test_docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-contrib/matlabdomain/HEAD/tests/test_docs/Makefile -------------------------------------------------------------------------------- /tests/test_docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-contrib/matlabdomain/HEAD/tests/test_docs/conf.py -------------------------------------------------------------------------------- /tests/test_docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-contrib/matlabdomain/HEAD/tests/test_docs/index.rst -------------------------------------------------------------------------------- /tests/test_docs/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-contrib/matlabdomain/HEAD/tests/test_docs/make.bat -------------------------------------------------------------------------------- /tests/test_docs_automodule/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-contrib/matlabdomain/HEAD/tests/test_docs_automodule/Makefile -------------------------------------------------------------------------------- /tests/test_docs_automodule/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-contrib/matlabdomain/HEAD/tests/test_docs_automodule/conf.py -------------------------------------------------------------------------------- /tests/test_docs_automodule/index.rst: -------------------------------------------------------------------------------- 1 | .. automodule:: test_data 2 | :members: 3 | -------------------------------------------------------------------------------- /tests/test_docs_automodule/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-contrib/matlabdomain/HEAD/tests/test_docs_automodule/make.bat -------------------------------------------------------------------------------- /tests/test_duplicated_link.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-contrib/matlabdomain/HEAD/tests/test_duplicated_link.py -------------------------------------------------------------------------------- /tests/test_lexer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-contrib/matlabdomain/HEAD/tests/test_lexer.py -------------------------------------------------------------------------------- /tests/test_matlabify.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-contrib/matlabdomain/HEAD/tests/test_matlabify.py -------------------------------------------------------------------------------- /tests/test_module_class_names.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-contrib/matlabdomain/HEAD/tests/test_module_class_names.py -------------------------------------------------------------------------------- /tests/test_no_matlab_src_dir.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-contrib/matlabdomain/HEAD/tests/test_no_matlab_src_dir.py -------------------------------------------------------------------------------- /tests/test_numad.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-contrib/matlabdomain/HEAD/tests/test_numad.py -------------------------------------------------------------------------------- /tests/test_package_links.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-contrib/matlabdomain/HEAD/tests/test_package_links.py -------------------------------------------------------------------------------- /tests/test_package_prefix.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-contrib/matlabdomain/HEAD/tests/test_package_prefix.py -------------------------------------------------------------------------------- /tests/test_parse_mfile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-contrib/matlabdomain/HEAD/tests/test_parse_mfile.py -------------------------------------------------------------------------------- /tests/test_parse_mlappfile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-contrib/matlabdomain/HEAD/tests/test_parse_mlappfile.py -------------------------------------------------------------------------------- /tests/test_pymat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-contrib/matlabdomain/HEAD/tests/test_pymat.py -------------------------------------------------------------------------------- /tests/test_pymat_common_root.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-contrib/matlabdomain/HEAD/tests/test_pymat_common_root.py -------------------------------------------------------------------------------- /tests/test_shortest_name.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-contrib/matlabdomain/HEAD/tests/test_shortest_name.py -------------------------------------------------------------------------------- /tests/test_skipping_module_members.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-contrib/matlabdomain/HEAD/tests/test_skipping_module_members.py -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sphinx-contrib/matlabdomain/HEAD/tox.ini --------------------------------------------------------------------------------