Skip to content

Commit

Permalink
remove unused function
Browse files Browse the repository at this point in the history
  • Loading branch information
turbolent committed Jul 11, 2024
1 parent 1adb252 commit 6014fbe
Showing 1 changed file with 0 additions and 10 deletions.
10 changes: 0 additions & 10 deletions runtime/value.go
Original file line number Diff line number Diff line change
Expand Up @@ -40,16 +40,6 @@ func newExportableValue(v interpreter.Value, inter *interpreter.Interpreter) exp
}
}

func newExportableValues(inter *interpreter.Interpreter, values []interpreter.Value) []exportableValue {
exportableValues := make([]exportableValue, 0, len(values))

for _, value := range values {
exportableValues = append(exportableValues, newExportableValue(value, inter))
}

return exportableValues
}

func (v exportableValue) Interpreter() *interpreter.Interpreter {
return v.inter
}
Expand Down

0 comments on commit 6014fbe

Please sign in to comment.