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
The core parser no longer supports the special "directive" syntax,
but this abstract class provides a reusable implementation of
handling directive syntax in a subsystem using preprocessing.
if(arg[0]=='[')// It looks like a directive, see if it is the one we want
28
+
{
29
+
varstart=arg.IndexOf($"[{Id}");
30
+
// Protect against matching substrings, such as "diagramX" matching "diagram" - but longer string may be valid for a different directive and we may still find the one we want
0 commit comments