sval
Version:
A javascript interpreter written in javascript
8 lines (7 loc) • 306 B
TypeScript
import { default as Scope } from '../scope/index.ts';
import * as acorn from 'acorn';
export interface IdentifierOptions {
getVar?: boolean;
throwErr?: boolean;
}
export declare function Identifier(node: acorn.Identifier, scope: Scope, options?: IdentifierOptions): Generator<never, any, unknown>;