(TypeInfo result)
| 261 | @Reviser public static class PrimaryEx2 extends FuncEvaluator.PrimaryEx { |
| 262 | public PrimaryEx2(List<ASTree> c) { super(c); } |
| 263 | public String translate(TypeInfo result) { return translate(0); } |
| 264 | public String translate(int nest) { |
| 265 | if (hasPostfix(nest)) { |
| 266 | String expr = translate(nest + 1); |
nothing calls this directly
no test coverage detected