angular/modules/@angular/language-service
Misko Hevery b4db73d0bf feat: ngIf now supports else; saves condition to local var
NgIf syntax has been extended to support else clause to display template
when the condition is false. In addition the condition value can now
be stored in local variable, for later reuse. This is especially useful
when used with the `async` pipe.

Example:

```
<div *ngIf="userObservable | async; else loading; let user">
  Hello {{user.last}}, {{user.first}}!
</div>
<template #loading>Waiting...</template>
```

closes #13061
closes #13297
2016-12-09 11:19:08 -08:00
..
src fix(language-service): do not throw for invalid metadata (#13261) 2016-12-06 17:11:09 -08:00
test feat: ngIf now supports else; saves condition to local var 2016-12-09 11:19:08 -08:00
index.ts fix: display framework version on bootstrapped component (#13252) 2016-12-06 16:21:07 -08:00
package.json feat(language-service): add services to support editors (#12987) 2016-11-22 09:10:23 -08:00
rollup.config.js refactor(build): fix build location of compiler-cli esm module (#13212) 2016-12-02 15:19:52 -08:00
tsconfig-build.json fix(language-service): update to use CompilerHost from compiler-cli (#13189) 2016-12-02 14:34:16 -08:00