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

Add missing trim properties on PrintExpressionStatement #152

Closed twbartel closed 4 years ago

twbartel commented 4 years ago

Example:

{{- foo -}}

This is expected to result in trimLeft = true and trimRight = true on the PrintExpressionStatement node. However, the properties were instead set on the inner expression node. This PR fixes that.