Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Parsing warning #217

Open
joeced opened this issue Sep 25, 2023 · 0 comments
Open

Parsing warning #217

joeced opened this issue Sep 25, 2023 · 0 comments

Comments

@joeced
Copy link
Collaborator

joeced commented Sep 25, 2023

We failed to parse this correctly

classdef ConanInterface < handle
   properties(Abstract, SetAccess=protected)
      remotes;
      active_remote;
      conan_home;
      remotes_json;
      db_file;
      settings_file;
   end

   methods(Abstract)
      % Support functions
      generateConanfile(dir, package_info)
      full_package_info = getFullPackageInfo(build_info, package_info)
      build_info = parseBuildInfo(self);
      [tf, version, install_dir]= find(self, prefixed_package)

      % Functions that actually call 'conan'
      version = search(prefixed_package);
      clean_conan_info = info(call_dir)
      package_info = install(package_info);
      remove(prefixed_pkg_name);
   end
end

This triggers a : [sphinxcontrib-matlabdomain] Unexpected class attribute: 'SharedTestFixtures'....

classdef (SharedTestFixtures={AnotherTestFixture()}) ...
        TestCase < matlab.unittest.TestCase
    % Class that inherits from MATLABs built-in ``matlab-unittest.TestCase``.
    % See `unittest documentation <https://www.mathworks.com/help/matlab/matlab_prog/write-simple-test-case-using-classes.html>`_.
   
...
end

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant