We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 146379f + 1498a83 commit 96fa46eCopy full SHA for 96fa46e
dot-parse/src/main/java/com/google/common/labs/parse/Parser.java
@@ -71,7 +71,8 @@
71
*
72
* <p>WARNING: A poorly-written grammar with long common prefixes may incur expensive backtracking
73
* overhead. And if you define recursive grammars using {@link #define define()} or {@link
74
- * Parser.Rule}, maliciously crafted input (think of 10K left parens) can cause StackOverflowError.
+ * Parser.Rule}, maliciously crafted input (think of 10K left parens when a pair of parentheses
75
+ * define a nested recursive grammar rule) can cause StackOverflowError.
76
*/
77
public abstract class Parser<T> {
78
/**
0 commit comments