mapstruct-idea icon indicating copy to clipboard operation
mapstruct-idea copied to clipboard

multiple line expression syntax check is broken

Open dragove opened this issue 4 years ago • 0 comments

when write expression in multiple lines, syntax check works unexpected. eg:

@Mapping(target = "totalAmount", expression = "java(a.getDetailList().stream()" + 
".map(ADetail::getAmount).reduce(BigDecimal.ZERO, BigDecimal::add))")
B a2b(A a);

dragove avatar Sep 09 '21 08:09 dragove