Skip to content

Commit

Permalink
fix after rebase
Browse files Browse the repository at this point in the history
  • Loading branch information
tochilinak committed Feb 22, 2024
1 parent 3336ade commit cfd5d91
Showing 1 changed file with 4 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@ class PyState(
var possibleTypesForNull: UTypeStream<PythonType> = typeSystem.topTypeStream(),
callStack: UCallStack<PyCallable, PyInstruction> = UCallStack(),
pathLocation: PathNode<PyInstruction> = PathNode.root(),
forkPoints: PathNode<PathNode<PyInstruction>> = PathNode.root(),
var concolicQueries: PersistentList<SymbolicHandlerEvent<Any>> = persistentListOf(),
var delayedForks: PersistentList<DelayedFork> = persistentListOf(),
private val mocks: MutableMap<MockHeader, UMockSymbol<UAddressSort>> = mutableMapOf(),
Expand All @@ -42,7 +43,8 @@ class PyState(
memory,
listOf(uModel),
pathLocation,
targets
forkPoints,
targets,
) {
override fun clone(newConstraints: UPathConstraints<PythonType>?): PyState {
val newPathConstraints = newConstraints ?: pathConstraints.clone()
Expand All @@ -59,6 +61,7 @@ class PyState(
possibleTypesForNull,
callStack,
pathNode,
forkPoints,
concolicQueries,
delayedForks,
mocks.toMutableMap(), // copy
Expand Down

0 comments on commit cfd5d91

Please sign in to comment.