In my coding standard checking tool, it limits comma expression usage, except in a for statment, i.e:<br><br>    x++, x+=1; // this will be marked as invalid usage<br>    for (x = 0, y = 0; ...) // but this comma expression is valid<br><br>I can implement `VisitBinComma`, this function will be called when parsed comma expression. But how to know if this comma expression is in a for statment ?<br><br>Thanks.<br><br>