forked from TrueCloudLab/neoneo-go
vm: add State() method to get a state description
This commit is contained in:
parent
a568740f56
commit
47f66dfbf3
1 changed files with 5 additions and 0 deletions
|
@ -248,6 +248,11 @@ func (v *VM) Stack(n string) string {
|
||||||
return buildStackOutput(s)
|
return buildStackOutput(s)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// State returns string representation of the state for the VM.
|
||||||
|
func (v *VM) State() string {
|
||||||
|
return v.state.String()
|
||||||
|
}
|
||||||
|
|
||||||
// Ready returns true if the VM ready to execute the loaded program.
|
// Ready returns true if the VM ready to execute the loaded program.
|
||||||
// Will return false if no program is loaded.
|
// Will return false if no program is loaded.
|
||||||
func (v *VM) Ready() bool {
|
func (v *VM) Ready() bool {
|
||||||
|
|
Loading…
Reference in a new issue