Skip to content

Conversation

@ykmnkmi
Copy link

@ykmnkmi ykmnkmi commented Apr 25, 2024

@Component(
  exports: [DateTime],
  pipes: [LowerCasePipe, UpperCasePipe],
  selector: 'hello-world',
  template: r'<p title="Time: {{$pipe.lowercase(DateTime.now().toString())}}">Hello {{name | uppercase}}!</p>',
)
class HelloWorldComponent {
  String name = 'world';
}

Using both old and new pipe syntax in one expression is not supported.

@ykmnkmi
Copy link
Author

ykmnkmi commented May 6, 2025

From CHANGELOG:

The old pipe syntax (expression | pipeName:arg) is removed. Please use the new syntax for pipes ($pipe.pipeName(expression, arg)) instead.

Old expression | pipeName:positional. Current $pipe.pipeName(expression, positional, named: value). New alternative expression | pipeName(positional, named: value).

@ykmnkmi
Copy link
Author

ykmnkmi commented May 6, 2025

I'll continue using the analyzer and remove the old expression parser.

@ykmnkmi ykmnkmi changed the title Revert to the old pipe syntax. New pipe syntax. May 6, 2025
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant