* @throws InternalError thrown if maximum AST depth is exceeded */
| 1469 | * @throws InternalError thrown if maximum AST depth is exceeded |
| 1470 | */ |
| 1471 | static void compileExpression(Token *&tok, AST_state& state) |
| 1472 | { |
| 1473 | if (state.depth > AST_MAX_DEPTH) |
| 1474 | throw InternalError(tok, "maximum AST depth exceeded", InternalError::AST); // ticket #5592 |
| 1475 | if (tok) |
| 1476 | compileComma(tok, state); |
| 1477 | } |
| 1478 | |
| 1479 | const Token* isLambdaCaptureList(const Token * tok) |
| 1480 | { |
no test coverage detected