Skip to content

Version 1.0.2

Compare
Choose a tag to compare
@acristoffers acristoffers released this 20 Aug 17:41
· 4 commits to main since this release
306c43a
  • Updates Go and Rust dependencies
  • Correctly handles line continuations in function definition

This is now supported:

function [a] ...
     = f()
end
  • Adds support to some unnecessary semicolons

This is now supported:

classdef A
  properties
  end; % <- here
  methods
  end; % <- and here
end
  • Fixes metaclass operator argument

This is no longer considered valid:

?"something"

Only this:

?com.exemple.AClass
  • Adds support for old-style (deprecated) property style
classdef PropTypeOld
    properties
        link_name@char = 'none';
        pos@double vector = zeros(3,1);
        rotm@double matrix = zeros(3,3);
        idx@uint8 scalar = 0;
    end
end