Releases: acristoffers/tree-sitter-matlab
Releases · acristoffers/tree-sitter-matlab
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
Vesrion 1.0.1
There are no code changes in this release, it only serves to push wheels for all supported python versions to PyPI.
Version 1.0.0
First official release of the grammar to give it a correct version for PyPI.