Version 1.0.2
- 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