We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 74b8495 commit c25b3c1Copy full SHA for c25b3c1
test/t95AttributeParsing.m
@@ -0,0 +1,15 @@
1
+% SYNTAX TEST "source.matlab" "Property etc. attribute parsing: https://github.com/mathworks/MATLAB-Language-grammar/issues/95"
2
+classdef Class
3
+ % Some properties
4
+ properties (SetAccess=public, GetAccess={?foo.bar.baz})
5
+% ^^^^^^^^^^^^ meta.cell.literal.matlab
6
+ end
7
+
8
+ events (Hidden=true, ListenAccess={?foo.bar}, NotifyAccess=?bar.baz)
9
+% ^^^^^^^^ meta.cell.literal.matlab
10
11
12
+ methods (Access=?bar.baz, Abstract=false)
13
+% ^^^^^^^ meta.metaclass.matlab
14
15
+end
0 commit comments