UNPKG

cherow

Version:

Fast and lightweight, standard-compliant javascript parser written in ECMAScript

72 lines (71 loc) 1.62 kB
import { Flags } from './utilities'; import { Token } from './token'; import * as parser from './parser/index'; /** * ForStatement types. */ export declare type ForStatementType = 'ForStatement' | 'ForOfStatement' | 'ForInStatement'; /** * Comment types. */ export declare type CommentType = 'MultiLine' | 'SingleLine' | 'SheBang' | 'HTMLOpen' | 'HTMLClose'; /** * The parser options. */ export interface Options { module?: boolean; comments?: boolean; next?: boolean; ranges?: boolean; loc?: boolean; jsx?: boolean; raw?: boolean; rawIdentifier?: boolean; source?: string; impliedStrict?: boolean; globalReturn?: boolean; experimental?: boolean; skipShebang?: boolean; tolerant?: boolean; node?: boolean; } /** * The parser interface. */ export interface Parser { source: string; length: number; index: number; line: number; column: number; startIndex: number; startColumn: number; startLine: number; lastIndex: number; lastColumn: number; lastLine: number; pendingExpressionError: any; flags: Flags; sourceFile: string | void; errorLocation: any; labelSet: any; comments: any; tokenValue: any; tokenRaw: string; lastValue: number; tokenRegExp: any; token: Token; errors: any[]; } export declare const Parser: { [P in keyof typeof parser]: typeof parser[P]; }; /** * Line / column location * */ export interface Location { index: number; column: number; line: number; }