@syntest/analysis-javascript
Version:
SynTest CFG JavaScript is a library for generating control flow graphs for the JavaScript language
12 lines • 443 B
TypeScript
import * as t from "@babel/types";
import { Factory } from "../Factory";
import { ConstantPool } from "./ConstantPool";
export declare class ConstantPoolFactory extends Factory {
/**
* Generate function map for specified target.
*
* @param AST The AST of the target
*/
extract(filePath: string, AST: t.Node, constantPool?: ConstantPool | undefined): ConstantPool;
}
//# sourceMappingURL=ConstantPoolFactory.d.ts.map