Searched refs:ElementLocation (Results 1 – 6 of 6) sorted by relevance
/third_party/parse5/packages/parse5/lib/tree-adapters/ |
D | interface.ts | 2 import type { Attribute, ElementLocation } from '../common/token.js'; 154 getNodeSourceCodeLocation(node: T['node']): ElementLocation | undefined | null; 266 setNodeSourceCodeLocation(node: T['node'], location: ElementLocation | null): void; 273 updateNodeSourceCodeLocation(node: T['node'], location: Partial<ElementLocation>): void;
|
D | default.ts | 2 import type { Attribute, Location, ElementLocation } from '../common/token.js'; 38 sourceCodeLocation?: ElementLocation | null; 303 setNodeSourceCodeLocation(node: Node, location: ElementLocation | null): void { 307 getNodeSourceCodeLocation(node: Node): ElementLocation | undefined | null { 311 updateNodeSourceCodeLocation(node: Node, endLocation: ElementLocation): void {
|
/third_party/parse5/test/utils/ |
D | generate-location-info-parser-tests.ts | 46 location: Token.ElementLocation, 60 location: Token.ElementLocation, 73 location: Token.ElementLocation,
|
/third_party/parse5/packages/parse5-htmlparser2-tree-adapter/lib/ |
D | index.ts | 271 setNodeSourceCodeLocation(node: AnyNode, location: Token.ElementLocation | null): void { 280 getNodeSourceCodeLocation(node: AnyNode): Token.ElementLocation | null | undefined { 284 updateNodeSourceCodeLocation(node: AnyNode, endLocation: Token.ElementLocation): void {
|
/third_party/parse5/packages/parse5/lib/common/ |
D | token.ts | 37 export interface ElementLocation extends LocationWithAttributes { interface
|
/third_party/parse5/packages/parse5/lib/parser/ |
D | index.ts | 30 type ElementLocation, alias 491 const endLoc: Partial<ElementLocation> =
|