@syntest/analysis
Advanced tools
Comparing version 0.1.0-beta.4 to 0.1.0-beta.5
import { ControlFlowProgram } from "@syntest/cfg"; | ||
export interface ControlFlowGraphFactory<S> { | ||
convert(filePath: string, AST: S): ControlFlowProgram<S>; | ||
convert(filePath: string, AST: S): ControlFlowProgram; | ||
} | ||
//# sourceMappingURL=ControlFlowGraphFactory.d.ts.map |
@@ -17,3 +17,3 @@ import { ControlFlowProgram } from "@syntest/cfg"; | ||
protected _abstractSyntaxTrees: Map<string, S>; | ||
protected _controlFlowProgramMap: Map<string, ControlFlowProgram<S>>; | ||
protected _controlFlowProgramMap: Map<string, ControlFlowProgram>; | ||
protected _targetMap: Map<string, Target>; | ||
@@ -38,3 +38,3 @@ protected _dependenciesMap: Map<string, string[]>; | ||
*/ | ||
getControlFlowProgram(filePath: string): ControlFlowProgram<S>; | ||
getControlFlowProgram(filePath: string): ControlFlowProgram; | ||
/** | ||
@@ -41,0 +41,0 @@ * Loads the target context from the given filePath |
@@ -10,3 +10,3 @@ import { ControlFlowProgram } from "@syntest/cfg"; | ||
controlFlowGraphResolvingStart: <S>(rootContext: RootContext<S>, filePath: string) => void; | ||
controlFlowGraphResolvingComplete: <S>(rootContext: RootContext<S>, filePath: string, cfp: ControlFlowProgram<S>) => void; | ||
controlFlowGraphResolvingComplete: <S>(rootContext: RootContext<S>, filePath: string, cfp: ControlFlowProgram) => void; | ||
targetExtractionStart: <S>(rootContext: RootContext<S>, filePath: string) => void; | ||
@@ -13,0 +13,0 @@ targetExtractionComplete: <S>(rootContext: RootContext<S>, filePath: string, target: Target) => void; |
{ | ||
"name": "@syntest/analysis", | ||
"version": "0.1.0-beta.4", | ||
"version": "0.1.0-beta.5", | ||
"description": "An analysis package", | ||
@@ -49,3 +49,3 @@ "keywords": [ | ||
"dependencies": { | ||
"@syntest/cfg": "^0.3.0-beta.15", | ||
"@syntest/cfg": "^0.3.0-beta.17", | ||
"@syntest/logging": "^0.1.0-beta.6", | ||
@@ -63,3 +63,3 @@ "lodash.clonedeep": "^4.5.0" | ||
}, | ||
"gitHead": "88813984d20845cfac1b1cd3a1fdbaef5f23d8dc" | ||
"gitHead": "c311c436e3d853ced92541ed57f80db8455db4c6" | ||
} |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
36012
Updated@syntest/cfg@^0.3.0-beta.17