1
2 static ngTemplateContextGuard<T, U extends NgIterable<T>>(dir: NgForOf<T, U>, ctx: any): ctx is NgForOfContext<T, U>
3
1<div class = "CirclePoint" *ngFor="let c of circles"
2 [attr.id]="'Location' + c.id">
3</div>
4
5<div class = "CirclePoint" *ngFor="let c of circles"
6 attr.id="Location{{c.id}}">
7</div>