mvel icon indicating copy to clipboard operation
mvel copied to clipboard

MVEL (MVFLEX Expression Language)

Results 14 mvel issues
Sort by recently updated
recently updated
newest added

MVEL 2.0.19 If I have a function: def abs(x) { (x >= 0) ? x : -x } and use it thus: abs(Integer / BigDecimal) where the egress type is...

I just add a test to PropertyAccessTests in MVEL ``` java public class Datas { private List ids = new ArrayList(); public void setIds(List ids) { this.ids = ids; }...

Hi Mike, It seems the version after 2.0.19 (excluding) will experiencing a NullPointerException. Here is the test case to reproduce the problem: public class X { private String name; public...

Hello Mike, First I have to thank you for making the amazing MVEL. I'm now using version 2.0.19 with Maven. But what's wierd is the following code is not working:...