| 1402 | } |
| 1403 | |
| 1404 | bool TOutputTraverser::visitVariableDecl(TVisit /* visit */, TIntermVariableDecl* node) |
| 1405 | { |
| 1406 | TInfoSink& out = infoSink; |
| 1407 | |
| 1408 | OutputTreeText(out, node, depth); |
| 1409 | |
| 1410 | out.debug << "VarDecl: " << node->getDeclSymbol()->getName() << '\n'; |
| 1411 | return true; |
| 1412 | } |
| 1413 | |
| 1414 | // |
| 1415 | // This function is the one to call externally to start the traversal. |
no test coverage detected