49 lines
430 B
Plaintext
49 lines
430 B
Plaintext
|
% All the examples here should yield folding
|
||
|
|
||
|
classdef
|
||
|
% Some code
|
||
|
end
|
||
|
|
||
|
for
|
||
|
% Some code
|
||
|
end
|
||
|
|
||
|
function
|
||
|
% Some code
|
||
|
end
|
||
|
|
||
|
if
|
||
|
% Some code
|
||
|
elseif
|
||
|
% Some code
|
||
|
else
|
||
|
% Some code
|
||
|
end
|
||
|
|
||
|
parfor
|
||
|
% Some code
|
||
|
end
|
||
|
|
||
|
spmd
|
||
|
% Some code
|
||
|
end
|
||
|
|
||
|
switch
|
||
|
case
|
||
|
% Some code
|
||
|
case
|
||
|
% Some code
|
||
|
otherwise
|
||
|
% Some code
|
||
|
end
|
||
|
|
||
|
try
|
||
|
% Some code
|
||
|
catch
|
||
|
% Some code
|
||
|
end
|
||
|
|
||
|
while
|
||
|
% Some code
|
||
|
end
|