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

Fix grammar when there is a line continuation after class attributes #94

Closed dklilley closed 1 month ago

dklilley commented 1 month ago

This change resolves tokenization in the following case by allowing a line continuation to follow the attributes:

classdef (Abstract) ...
    ClassName
end

Fixes #93