Skip to content

New pipe syntax. #73

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Draft
wants to merge 2 commits into
base: master
Choose a base branch
from
Draft

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