The source project of this merge request has been removed.
Fixes array and brace panics on unmatched left brackets
This adds a counter in Pipeline
to let us know if we hit a [
or {
last. Not only that, but the counter actually stores this information historically as well (it remembers if we hit [{[{
or ````[{{[``` etc.).
This took a while because I was trying to come up with a way of doing this without pushing/poping to some sort of stack.