doc(template syntax): Short-circuiting is now supported
see https://github.com/angular/angular/pull/5146
This commit is contained in:
parent
7676a5c101
commit
5828f4de79
|
@ -99,8 +99,6 @@ code-example(format="" language="html" escape="html").
|
|||
* Assignment is prohibited except in [Event Bindings](#event-binding).
|
||||
* The `new` operator is prohibited.
|
||||
* The bit-wise operators, `|` and `&`, are not supported.
|
||||
* The logical operators, `||` and `&&`, and the ternary operator in `a?b:c` do not “short-circuit”.
|
||||
Angular evaluates both sides of `a && a.foo` and reports an error if `a` is null.
|
||||
* Increment and decrement operators, `++` and `--`, aren’t supported.
|
||||
* [Template expression operators](#expression-operators), such as `|` and `?.`, add new meaning.
|
||||
|
||||
|
|
Loading…
Reference in New Issue