Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 | 1x 1x 825x 825x 825x 825x 825x | import type { Text } from '../../angular-internal/ast.type';
import { NgNodeKind, NgNodeMeta, NgTextMeta, ParsedNode } from './interface';
 
export class ParsedNgText implements ParsedNode<NgTextMeta> {
  kind = NgNodeKind.Text;
 
  constructor(
    private node: Text,
    public parent: ParsedNode<NgNodeMeta> | undefined,
    public index: number
  ) {}
 
  getNodeMeta(): NgTextMeta {
    return {
      kind: NgNodeKind.Text,
      value: this.node.value,
      index: this.index,
    };
  }
}
  |