| 1308 | } |
| 1309 | |
| 1310 | static const CBMType *eval_lambda(JavaLSPContext *ctx, TSNode node) { |
| 1311 | (void)node; |
| 1312 | /* Without a SAM target type, the lambda is functional-interface-typed — |
| 1313 | * we don't attempt to infer the SAM here. Caller drops the edge. */ |
| 1314 | return cbm_type_unknown(); |
| 1315 | } |
| 1316 | |
| 1317 | static const CBMType *eval_method_reference(JavaLSPContext *ctx, TSNode node) { |
| 1318 | /* Same caveat as lambdas; method_reference produces a functional |
no test coverage detected