MCPcopy Index your code
hub / github.com/angular/angular / _isOpeningComment

Function _isOpeningComment

packages/compiler/src/i18n/extractor_merger.ts:666–668  ·  view source on GitHub ↗
(n: html.Node)

Source from the content-addressed store, hash-verified

664}
665
666function _isOpeningComment(n: html.Node): boolean {
667 return !!(n instanceof html.Comment && n.value && n.value.startsWith('i18n'));
668}
669
670function _isClosingComment(n: html.Node): boolean {
671 return !!(n instanceof html.Comment && n.value && n.value === '/i18n');

Callers 1

visitCommentMethod · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…