(TypeEnv tenv)
| 161 | @Reviser public static class PrimaryEx2 extends FuncEvaluator.PrimaryEx { |
| 162 | public PrimaryEx2(List<ASTree> c) { super(c); } |
| 163 | public TypeInfo typeCheck(TypeEnv tenv) throws TypeException { |
| 164 | return typeCheck(tenv, 0); |
| 165 | } |
| 166 | public TypeInfo typeCheck(TypeEnv tenv, int nest) throws TypeException { |
| 167 | if (hasPostfix(nest)) { |
| 168 | TypeInfo target = typeCheck(tenv, nest + 1); |
nothing calls this directly
no test coverage detected