UNPKG

typescript

Version:

TypeScript is a language for application scale JavaScript development

19 lines 1.15 kB
import type { Node, SourceFile } from "./ast.ts"; export declare function getTokenAtPosition(sourceFile: SourceFile, position: number): Node; export declare function getTouchingPropertyName(sourceFile: SourceFile, position: number): Node; export declare function getTouchingToken(sourceFile: SourceFile, position: number): Node; /** * Finds the token that starts immediately after `previousToken` ends, searching * within `parent`. Returns `undefined` if no such token exists. */ export declare function findNextToken(previousToken: Node, parent: Node, sourceFile: SourceFile): Node | undefined; /** * Finds the leftmost token satisfying `position < token.end`. * If the position is in the trivia of that leftmost token, or the token is invalid, * returns the rightmost valid token with `token.end <= position`. * Excludes `JsxText` tokens containing only whitespace. */ export declare function findPrecedingToken(sourceFile: SourceFile, position: number): Node | undefined; /** @internal */ export declare function getTokenPosOfNode(node: Node, sourceFile: SourceFile, includeJSDoc?: boolean): number; //# sourceMappingURL=astnav.d.ts.map