The cst resulting from parsing `aabbbcbcd` with the following grammar is ambiguous: ```Smalltalk ManyTestGrammar { StartRule = "a"+ ("b"+ "c")+ "d"+ } ``` We can not determine the matching intervals of "b"+ anymore.