A line continuation (`...`) between the class attributes and the class name breaks tokenization/syntax highlighting in the class. Compare the following: ```matlab classdef (Abstract = true) ClassName properties Prop1 end end ``` ```matlab classdef (Abstract = true) ... ClassName properties Prop1 end end ```