| 637 | } |
| 638 | |
| 639 | void Context::stackWalk( const LineInfo * at, bool showArguments, bool showLocalVariables ) { |
| 640 | auto str = getStackWalk(at, showArguments, showLocalVariables); |
| 641 | to_out(at, str.c_str()); |
| 642 | } |
| 643 | |
| 644 | class StackWalkerTextWriter : public StackWalker { |
| 645 | public: |
no test coverage detected