()
| 91 | } |
| 92 | |
| 93 | @Override |
| 94 | public String toString() { |
| 95 | return String.format("%s %s \"%s\" <%s>[%s]%s", |
| 96 | getInvokeString(), bootstrapMethodRef, |
| 97 | methodName, methodType, |
| 98 | bootstrapArgs.stream() |
| 99 | .map(Literal::toString) |
| 100 | .collect(Collectors.joining(",")), |
| 101 | getArgsString()); |
| 102 | } |
| 103 | |
| 104 | @Override |
| 105 | public <T> T accept(ExpVisitor<T> visitor) { |
nothing calls this directly
no test coverage detected