mathworks / MATLAB-Language-grammar

This repository contains a regular expression based language grammar for MATLAB to be used by GitHub Linguist for highlighting MATLAB code on GitHub
50 stars 17 forks source link

Comment after semicolon in property block isn't highlighted #16

Closed rlivings39 closed 4 years ago

rlivings39 commented 5 years ago

Fallout from #14 and reported in https://github.com/Gimly/vscode-matlab/issues/97. With the property/argument validation highlighting changes, we don't highlight the comment below properly.

classdef AClass
    properties (SetAccess = protected)
        prop double; % Some comment
    end
end