| Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |
int result_depth = state.depth + 1;It would help with a comment here explaining that even though this is parsed iteratively, we want to avoid creating deep expression trees to avoid stack overflows later.
} else {
result_depth = state.depth + 1;
}I don't understand this "reset". Doesn't each iteration of this loop represent a new level?
test_invalid_value("width", "calc(1px * 1px" + " * 2".repeat(200) + ")");This is only testing `ParseValueMultiplicativeExpression`, and not `ParseAdditiveValueExpression`, right?
| Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |
| Commit-Queue | +1 |
It would help with a comment here explaining that even though this is parsed iteratively, we want to avoid creating deep expression trees to avoid stack overflows later.
Done
} else {
result_depth = state.depth + 1;
}I don't understand this "reset". Doesn't each iteration of this loop represent a new level?
Done
test_invalid_value("width", "calc(1px * 1px" + " * 2".repeat(200) + ")");This is only testing `ParseValueMultiplicativeExpression`, and not `ParseAdditiveValueExpression`, right?
| Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |