You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
If an m-file class contains enumerations and events, the file parsing will end at that declaration.
example code:
class myclass
enumeration
MYENUM
end
function myfunc()
end
end
myfunc() will not be parsed.
I already found the culprit for this in mat_types.py at lines 964 and 974 (version 0.34).
idx is not increased after exiting the while loop, so the next end will be considered as the class definitions end.
The text was updated successfully, but these errors were encountered:
If an m-file class contains enumerations and events, the file parsing will end at that declaration.
example code:
myfunc() will not be parsed.
I already found the culprit for this in mat_types.py at lines 964 and 974 (version 0.34).
idx is not increased after exiting the while loop, so the next end will be considered as the class definitions end.
The text was updated successfully, but these errors were encountered: