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
Text {
TextRule
= text
textCharacter
= "\\\""
| "\\\\"
| ~"\\" ~"\"" any
text
= "\"" textCharacter+ "\""
}
When trying to match the input Hello World starting from text everything works as expected and the string is correctly matched. When starting from TextRule, however, the expression can not be matched.
I tried the very same setup in Ohm/JS, which was able to match with either rule as the starting rule.
The text was updated successfully, but these errors were encountered:
I was using the following rules in Ohm-S:
When trying to match the input
Hello World
starting fromtext
everything works as expected and the string is correctly matched. When starting fromTextRule
, however, the expression can not be matched.I tried the very same setup in Ohm/JS, which was able to match with either rule as the starting rule.
The text was updated successfully, but these errors were encountered: