refactor(pipes): removed pipes from properties

BREAKING CHANGE:

This PR remove an ability to use pipes in the properties config. Instead, inject the pipe registry.
This commit is contained in:
vsavkin
2015-06-18 15:40:12 -07:00
parent ad7aca631d
commit 20a8f0dbe5
31 changed files with 261 additions and 270 deletions

View File

@ -8,7 +8,7 @@ import {
Conditional,
EmptyExpr,
If,
Pipe,
BindingPipe,
FunctionCall,
ImplicitReceiver,
Interpolation,
@ -81,7 +81,7 @@ export class Unparser implements AstVisitor {
}
}
visitPipe(ast: Pipe) {
visitPipe(ast: BindingPipe) {
this._expression += '(';
this._visit(ast.exp);
this._expression += ` | ${ast.name}`;