(tNode: TNode)
| 77 | * @param tNode current TNode |
| 78 | */ |
| 79 | export function isInlineTemplate(tNode: TNode): boolean { |
| 80 | return tNode.type === TNodeType.Container && tNode.value !== NG_TEMPLATE_SELECTOR; |
| 81 | } |
| 82 | |
| 83 | /** |
| 84 | * Function that checks whether a given tNode matches tag-based selector and has a valid type. |
no outgoing calls
no test coverage detected
searching dependent graphs…