Skip to content

Aviator 4.2.10 released

Compare
Choose a tag to compare
@killme2008 killme2008 released this 18 Feb 03:22
· 492 commits to master since this release

Main changes:

  • Added a new helper method AviatorEvaluator.newEnv(k1, v1, k2, v2, ...) to create an environment map.
  • Supports assigning value to object's property such as bean.x = y.
  • FIxed parsing scientific notation number error with Options.ALWAYS_PARSE_FLOATING_POINT_NUM #191
  • Allows new line(\r or \r\n) breaker in expression. #191
  • Function can be found by object's property syntax #191 , for example
m = seq.map('square', lambda(x)-> x*x end); 
m.square(100.0)