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 presence of regex means that any / characters in the parameters will be treated as forming a regular expression. This allows assertion annotations like:
We currently define what's allowed in tbd directives and annotations as:
The presence of
regex
means that any/
characters in the parameters will be treated as forming a regular expression. This allows assertion annotations like:But is problematic if we want to have assertion annotations such as:
We could fix that by having something like:
where
idiv
means integer divide.But that doesn't allow for something like:
We could remove the special meaning for
/
, and say if you want a regex in an annotation, then you have to define some sort of function, such as:That would basically means changing the above rule to:
The text was updated successfully, but these errors were encountered: