* Checks whether the given template is a plain ng-template (as opposed to another kind of template * such as a structural directive template or control flow template). This is checked based on the * tagName. We can expect that only plain ng-templates will come through with a tagName of * 'ng-temp
(tmpl: t.Template)
| 1299 | * | `<ng-template *ngIf>` (structural) | null | |
| 1300 | */ |
| 1301 | function isPlainTemplate(tmpl: t.Template) { |
| 1302 | return splitNsName(tmpl.tagName ?? '')[1] === NG_TEMPLATE_TAG_NAME; |
| 1303 | } |
| 1304 | |
| 1305 | /** |
| 1306 | * Ensures that the i18nMeta, if provided, is an i18n.Message. |
no test coverage detected
searching dependent graphs…