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
Without regular expressions multiple instances of the generated parser can be used concurrently. When regexps are used they are declared as 'static' but are in fact mutable objects, and _ParseRegexp method changes state of the objects. This prevents using parser with regular expressions concurrently:
Please change parser generation so that regexps are not static
The text was updated successfully, but these errors were encountered:
Without regular expressions multiple instances of the generated parser can be used concurrently. When regexps are used they are declared as 'static' but are in fact mutable objects, and _ParseRegexp method changes state of the objects. This prevents using parser with regular expressions concurrently:
Please change parser generation so that regexps are not static
The text was updated successfully, but these errors were encountered: