(C context, ObjExpr objx, GeneratorAdapter gen)
| 1218 | } |
| 1219 | |
| 1220 | @Override |
| 1221 | public void emit(C context, ObjExpr objx, GeneratorAdapter gen) { |
| 1222 | if(preferOverloadedField()) |
| 1223 | fieldOverload.emit(context, objx, gen); |
| 1224 | else |
| 1225 | buildThunk(context, this).emit(context, objx, gen); |
| 1226 | } |
| 1227 | |
| 1228 | // Expr impl - method value, always an AFn |
| 1229 |
nothing calls this directly
no test coverage detected