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
Unfortunantly, ALL_PATH in reserved_keywords has a prefix one ALL in non_reserved_keys, and also ELEMENT_ID in non_reserved_keys has a prefix one ELEMENT in reserved_keywords. Since the choise order is important to pest parser, It cannot parse input ["ALL_PATH", "ELEMENT", "ELEMENT_ID", "ALL"] simutanously.
How can I rearrange the order of reserved_keywordsnon_reserved_keys in keyword?
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
-
I have two groups keywords, one is
reserved_keywords
and the other isnon_reserved_keys
. Akeyword
rule contains both.Unfortunantly,
ALL_PATH
in reserved_keywords has a prefix oneALL
in non_reserved_keys, and alsoELEMENT_ID
in non_reserved_keys has a prefix oneELEMENT
in reserved_keywords. Since the choise order is important to pest parser, It cannot parse input ["ALL_PATH", "ELEMENT", "ELEMENT_ID", "ALL"] simutanously.How can I rearrange the order of
reserved_keywords
non_reserved_keys
inkeyword
?Beta Was this translation helpful? Give feedback.
All reactions