trivago / melody

Melody is a library for building JavaScript web applications.
https://melody.js.org
Apache License 2.0
215 stars 39 forks source link

Possible missing Operator "=>" in the filter filter #163

Open ppvolto opened 4 years ago

ppvolto commented 4 years ago

Explain the problem

I started to use prettier-plugin-twig-melody to check my twig templates and found that melody do not recognize the => Operator like it's used in the filter filter.

Expected Behaviour

Usage of the => operator like described in the filter filter.

Actual Behaviour

Throws Error:

ERROR in ./src/home/index.twig
ERROR: Unexpected token "operator" of value ">"
  16 |     {% mount '../counter' with { count: 5 } %}
  17 |     {% set sizes = [34, 36, 38, 40, 42] %}
> 18 |     {{ sizes|filter(v => v > 38)|join(', ') }}
     |                        ^
  19 | </div>
gregkohn commented 3 years ago

Having the same problem, any chance this can be added as a token?

jeroenbraspenning commented 2 years ago

Has anyone found a way to solve this? i'm experiencing the same issue.