Skip to content

Commit

Permalink
Expose State#parentState
Browse files Browse the repository at this point in the history
  • Loading branch information
Seggan committed Dec 19, 2023
1 parent bd957a8 commit 2abbbd9
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ import kotlin.collections.set
/**
* Represents the state of a Metis virtual machine. This is the class that is used to run Metis code.
*/
class State(parentState: State? = null) {
class State(val parentState: State? = null) {

/**
* The global variables of the state.
Expand Down

0 comments on commit 2abbbd9

Please sign in to comment.