| 369 | |
| 370 | |
| 371 | void cDumpASTVisitor::VisitLiteralArray(cASTLiteralArray& node) |
| 372 | { |
| 373 | indent(); |
| 374 | if (node.IsMatrix()) cout << "$"; |
| 375 | cout << "{" << endl; |
| 376 | m_depth++; |
| 377 | |
| 378 | node.GetValues()->Accept(*this); |
| 379 | |
| 380 | m_depth--; |
| 381 | indent(); |
| 382 | cout << "}" << endl; |
| 383 | } |
| 384 | |
| 385 | |
| 386 | void cDumpASTVisitor::VisitLiteralDict(cASTLiteralDict& node) |