(ExecutionContext context, Object self)
| 27 | } |
| 28 | |
| 29 | @Export |
| 30 | public void trace(ExecutionContext context, Object self) { |
| 31 | List<StackElement> stack = new ArrayList<>(); |
| 32 | context.getParent().collectStackElements(stack); |
| 33 | for (StackElement each : stack) { |
| 34 | log(context, self, each.toString() ); |
| 35 | } |
| 36 | } |
| 37 | } |
nothing calls this directly
no test coverage detected