EvalCtx -> Frame

This commit is contained in:
Qi Xiao 2018-01-20 22:34:38 +00:00
parent f0e66e1f1f
commit 0ec8f411af
3 changed files with 3 additions and 3 deletions

View File

@ -9,7 +9,7 @@ import (
"github.com/elves/elvish/parse"
)
// LValuesOp is an operation on an EvalCtx that produce Variable's.
// LValuesOp is an operation on an Frame that produce Variable's.
type LValuesOp struct {
Func LValuesOpFunc
Begin, End int

View File

@ -10,7 +10,7 @@ import (
"github.com/elves/elvish/parse"
)
// Op is an operation on an EvalCtx.
// Op is an operation on an Frame.
type Op struct {
Func OpFunc
Begin, End int

View File

@ -18,7 +18,7 @@ import (
var outputCaptureBufferSize = 16
// ValuesOp is an operation on an EvalCtx that produce Value's.
// ValuesOp is an operation on an Frame that produce Value's.
type ValuesOp struct {
Func ValuesOpFunc
Begin, End int