X Tutup
Skip to content

[BC BREAK] feat(Parser): associate pipes right to left#4716

Closed
vicb wants to merge 1 commit intoangular:masterfrom
vicb:1013-parsePipe
Closed

[BC BREAK] feat(Parser): associate pipes right to left#4716
vicb wants to merge 1 commit intoangular:masterfrom
vicb:1013-parsePipe

Conversation

@vicb
Copy link
Copy Markdown
Contributor

@vicb vicb commented Oct 14, 2015

closes #4605

BREAKING CHANGE:

Before:

1 + 1 | pipe:a | pipe:b was parsed as (1 + 1) | pipe:(a | pipe:b)

After:

1 + 1 | pipe:a | pipe:b is parsed as ((1 + 1) | pipe:a) | pipe:b

@vicb vicb added feature Label used to distinguish feature request from other issues comp: core/change_detection action: review The PR is still awaiting reviews from at least one requested reviewer labels Oct 14, 2015
@mhevery mhevery added pr_state: LGTM and removed action: review The PR is still awaiting reviews from at least one requested reviewer labels Oct 20, 2015
closes angular#4605

BREAKING CHANGE:

Before:

`1 + 1 | pipe:a | pipe:b` was parsed as `(1 + 1) | pipe:(a | pipe:b)`

After:

`1 + 1 | pipe:a | pipe:b` is parsed as `((1 + 1) | pipe:a) | pipe:b`
@vicb vicb added the action: merge The PR is ready for merge by the caretaker label Oct 21, 2015
@mary-poppins
Copy link
Copy Markdown

Merging PR #4716 on behalf of @vicb to branch presubmit-vicb-pr-4716.

@mary-poppins mary-poppins removed the action: merge The PR is ready for merge by the caretaker label Oct 21, 2015
@vicb vicb closed this in 4639f44 Oct 21, 2015
@vicb vicb deleted the 1013-parsePipe branch October 27, 2015 01:50
@angular-automatic-lock-bot
Copy link
Copy Markdown

This issue has been automatically locked due to inactivity.
Please file a new issue if you are encountering a similar or related problem.

Read more about our automatic conversation locking policy.

This action has been performed automatically by a bot.

@angular-automatic-lock-bot angular-automatic-lock-bot bot locked and limited conversation to collaborators Sep 7, 2019
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.

Labels

cla: yes feature Label used to distinguish feature request from other issues

Projects

None yet

Development

Successfully merging this pull request may close these issues.

[pipes] chaining a pipe after slice

4 participants

X Tutup