aboutsummaryrefslogtreecommitdiff
path: root/pkg/interpreter/interpreter.go
diff options
context:
space:
mode:
Diffstat (limited to 'pkg/interpreter/interpreter.go')
-rw-r--r--pkg/interpreter/interpreter.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkg/interpreter/interpreter.go b/pkg/interpreter/interpreter.go
index 76917b7..433f264 100644
--- a/pkg/interpreter/interpreter.go
+++ b/pkg/interpreter/interpreter.go
@@ -16,14 +16,14 @@ func NewInterpreter(f *field.Field, p *pointer.Pointer) *Interpreter {
func (i *Interpreter) Run() int {
for i.p != nil {
- if v := i.Step(); v != nil {
+ if v := i.step(); v != nil {
return *v
}
}
return 0
}
-func (i *Interpreter) Step() *int {
+func (i *Interpreter) step() *int {
var prev *pointer.Pointer = nil
for p := i.p; p != nil; p = p.Next {
done, v := p.Exec(i.f)