Documentation ¶
Overview ¶
Package eval handles evaluation of parsed Elvish code and provides runtime facilities.
Index ¶
- Constants
- Variables
- func ComposeExceptionsFromPipeline(excs []*Exception) error
- func EachExternal(f func(string))
- func FromJSONInterface(v interface{}) interface{}
- func InTempHome(f func(string))
- func MakeVariableRef(explode bool, ns string, name string) string
- func MustCreateEmpty(name string)
- func MustMkdirAll(name string, perm os.FileMode)
- func MustWriteFile(filename string, data []byte, perm os.FileMode)
- func NewExternalCmdExit(name string, ws syscall.WaitStatus, pid int) error
- func ParseIncompleteVariableRef(text string) (explode bool, ns string, name string)
- func ParseVariableRef(text string) (explode bool, ns string, name string)
- func PurelyEvalCompound(cn *parse.Compound) (string, error)
- func SplitIncompleteVariableRef(text string) (explodePart, nsPart, name string)
- func SplitVariableRef(text string) (explodePart, nsPart, name string)
- func Styled(fm *Frame, input interface{}, transformers ...interface{}) (*styled.Text, error)
- func TakeNoOpt(opts map[string]interface{})
- func Test(t *testing.T, tests ...TestCase)
- func TestWithSetup(t *testing.T, setup func(*Evaler), tests ...TestCase)
- type AddDirer
- type BuiltinFn
- type Callable
- type Closure
- func (c *Closure) Call(fm *Frame, args []interface{}, opts map[string]interface{}) error
- func (c *Closure) Equal(rhs interface{}) bool
- func (c *Closure) Hash() uint32
- func (c *Closure) Index(k interface{}) (interface{}, bool)
- func (c *Closure) IterateKeys(f func(interface{}) bool)
- func (*Closure) Kind() string
- func (c *Closure) Repr(int) string
- type CompilationError
- type Editor
- type EnvList
- type Evaler
- func (ev *Evaler) AddAfterChdir(f func(string))
- func (ev *Evaler) AddBeforeChdir(f func(string))
- func (ev *Evaler) Chdir(path string) error
- func (ev *Evaler) Close() error
- func (ev *Evaler) Compile(n *parse.Chunk, src *Source) (Op, error)
- func (ev *Evaler) EachNsInTop(f func(s string))
- func (ev *Evaler) EachVariableInTop(ns string, f func(s string))
- func (ev *Evaler) Eval(op Op, ports []*Port, src *Source) error
- func (ev *Evaler) EvalSource(src *Source) error
- func (ev *Evaler) EvalWithStdPorts(op Op, src *Source) error
- func (ev *Evaler) InstallBundled(name, src string)
- func (ev *Evaler) InstallDaemonClient(client *daemon.Client)
- func (ev *Evaler) InstallModule(name string, mod Ns)
- func (ev *Evaler) PurelyEvalCompound(cn *parse.Compound) (string, error)
- func (ev *Evaler) PurelyEvalPartialCompound(cn *parse.Compound, upto *parse.Indexing) (string, error)
- func (ev *Evaler) PurelyEvalPrimary(pn *parse.Primary) interface{}
- func (ev *Evaler) SetArgs(args []string)
- func (ev *Evaler) SetLibDir(libDir string)
- func (ev *Evaler) SourceRC(src *Source) error
- type Exception
- func (exc *Exception) Bool() bool
- func (exc *Exception) Equal(rhs interface{}) bool
- func (exc *Exception) Error() string
- func (exc *Exception) Hash() uint32
- func (exc *Exception) Index(k interface{}) (interface{}, bool)
- func (exc *Exception) IterateKeys(f func(interface{}) bool)
- func (exc *Exception) Kind() string
- func (exc *Exception) Pprint(indent string) string
- func (exc *Exception) Repr(indent int) string
- type ExternalCmd
- type ExternalCmdExit
- type Flow
- type Frame
- func (fm *Frame) Call(f Callable, args []interface{}, opts map[string]interface{}) (err error)
- func (fm *Frame) CallWithOutputCallback(fn Callable, args []interface{}, opts map[string]interface{}, ...) error
- func (fm *Frame) CaptureOutput(fn Callable, args []interface{}, opts map[string]interface{}) (vs []interface{}, err error)
- func (fm *Frame) Close() error
- func (ev Frame) EachNsInTop(f func(s string))
- func (ev Frame) EachVariableInTop(ns string, f func(s string))
- func (fm *Frame) Eval(op Op) (err error)
- func (ctx *Frame) ExecAndUnwrap(desc string, op ValuesOp) ValuesUnwrapper
- func (fm *Frame) InputChan() chan interface{}
- func (fm *Frame) InputFile() *os.File
- func (fm *Frame) Interrupts() <-chan struct{}
- func (fm *Frame) IsInterrupted() bool
- func (fm *Frame) IterateInputs(f func(interface{}))
- func (fm *Frame) OutputChan() chan<- interface{}
- func (fm *Frame) OutputFile() *os.File
- func (fm *Frame) ResolveVar(n, name string) vars.Var
- func (ctx *Frame) Unwrap(desc string, begin, end int, vs []interface{}) ValuesUnwrapper
- type GlobFlag
- type GlobPattern
- func (gp GlobPattern) Concat(v interface{}) (interface{}, error)
- func (gp GlobPattern) Equal(a interface{}) bool
- func (gp GlobPattern) Hash() uint32
- func (gp GlobPattern) Index(k interface{}) (interface{}, error)
- func (GlobPattern) Kind() string
- func (gp GlobPattern) RConcat(v interface{}) (interface{}, error)
- func (gp GlobPattern) Repr(int) string
- type Inputs
- type LValuesOp
- type LValuesOpBody
- type Ns
- func (ns Ns) Add(name string, v vars.Var) Ns
- func (ns Ns) AddBuiltinFn(nsName, name string, impl interface{}) Ns
- func (ns Ns) AddBuiltinFns(nsName string, fns map[string]interface{}) Ns
- func (ns Ns) AddFn(name string, v Callable) Ns
- func (ns Ns) AddNs(name string, v Ns) Ns
- func (ns Ns) Clone() Ns
- func (ns Ns) Equal(rhs interface{}) bool
- func (ns Ns) HasName(name string) bool
- func (ns Ns) Hash() uint32
- func (ns Ns) Index(k interface{}) (interface{}, bool)
- func (ns Ns) IterateKeys(f func(interface{}) bool)
- func (Ns) Kind() string
- func (ns Ns) PopName(name string) vars.Var
- func (ns Ns) Repr(int) string
- type Op
- type OpBody
- type PipelineError
- type Port
- type PwdVariable
- type RawOptions
- type Source
- type SrcType
- type TestCase
- type ValueUnwrapper
- type ValuesOp
- type ValuesOpBody
- type ValuesUnwrapper
- Bugs
Constants ¶
const ( // FnSuffix is the suffix for the variable names of functions. Defining a // function "foo" is equivalent to setting a variable named "foo~", and vice // versa. FnSuffix = "~" // NsSuffix is the suffix for the variable names of namespaces. Defining a // namespace foo is equivalent to setting a variable named "foo:", and vice // versa. NsSuffix = ":" )
Variables ¶
var ( // ErrRelativeUseNotFromMod is thrown by "use" when relative use is used // not from a module ErrRelativeUseNotFromMod = errors.New("Relative use not from module") // ErrRelativeUseGoesOutsideLib is thrown when a relative use goes out of // the library directory. ErrRelativeUseGoesOutsideLib = errors.New("Module outside library directory") )
var ( ErrBadGlobPattern = errors.New("bad GlobPattern; elvish bug") ErrCannotDetermineUsername = errors.New("cannot determine user name from glob pattern") )
Errors thrown when globbing.
var ( ErrCanOnlyAssignList = errors.New("can only assign compatible values") ErrPathMustBeString = errors.New("path must be string") ErrPathCannotContainColonZero = errors.New(`path cannot contain colon or \0`) )
Errors
var ( ErrExternalCmdOpts = errors.New("external commands don't accept elvish options") ErrCdNoArg = errors.New("implicit cd accepts no arguments") )
var ( ErrMustFollowWildcard = errors.New("must follow wildcard") ErrModifierMustBeString = errors.New("modifier must be string") ErrWildcardNoMatch = errors.New("wildcard has no match") )
var ( // ClosedChan is a closed channel, suitable for use as placeholder channel input. ClosedChan = make(chan interface{}) // BlackholeChan is channel writes onto which disappear, suitable for use as // placeholder channel output. BlackholeChan = make(chan interface{}) // DevNull is /dev/null. DevNull *os.File // DevNullClosedInput is a port made up from DevNull and ClosedChan, // suitable as placeholder input port. DevNullClosedChan *Port )
var ( // NoArgs is an empty argument list. It can be used as an argument to Call. NoArgs = []interface{}{} // NoOpts is an empty option map. It can be used as an argument to Call. NoOpts = map[string]interface{}{} )
var ErrArgs = errors.New("args error")
var ErrArityMismatch = errors.New("arity mismatch")
ErrArityMismatch is thrown by a closure when the number of arguments the user supplies does not match with what is required.
var ErrBadBase = errors.New("bad base")
ErrBadBase is thrown by the "base" builtin if the base is smaller than 2 or greater than 36.
var ErrImpure = errors.New("expression is impure")
var ErrInput = errors.New("input error")
var ErrInterrupted = errors.New("interrupted")
var ErrMoreThanOneRest = errors.New("more than one @ lvalue")
ErrMoreThanOneRest is returned when the LHS of an assignment contains more than one rest variables.
var ErrNoOptAccepted = errors.New("no option accepted")
var ErrNotInSameGroup = errors.New("not in the same process group")
var ErrStoreNotConnected = errors.New("store not connected")
var IsBuiltinSpecial = map[string]bool{}
IsBuiltinSpecial is the set of all names of builtin special forms. It is intended for external consumption, e.g. the syntax highlighter.
var OK = &Exception{}
OK is a pointer to the zero value of Exception, representing the absence of exception.
Functions ¶
func ComposeExceptionsFromPipeline ¶ added in v0.6.0
ComposeExceptionsFromPipeline takes a slice of Exception pointers and composes a suitable error. If all elements of the slice are either nil or OK, a nil is returned. If there is exactly non-nil non-OK Exception, it is returned. Otherwise, a PipelineError built from the slice is returned, with nil items turned into OK's for easier access from elvishscript.
func EachExternal ¶ added in v0.11.0
func EachExternal(f func(string))
EachExternal calls f for each name that can resolve to an external command. TODO(xiaq): Windows support
func FromJSONInterface ¶
func FromJSONInterface(v interface{}) interface{}
FromJSONInterface converts a interface{} that results from json.Unmarshal to a Value.
func InTempHome ¶ added in v0.12.0
func InTempHome(f func(string))
InTempHome is like util.InTempDir, but it also sets HOME to the temporary directory when f is called.
func MakeVariableRef ¶ added in v0.12.0
MakeVariableRef builds a variable reference.
func MustCreateEmpty ¶ added in v0.12.0
func MustCreateEmpty(name string)
MustCreateEmpty creates an empty file, and panics if an error occurs. It is mainly useful in tests.
func MustMkdirAll ¶ added in v0.12.0
MustMkdirAll calls os.MkdirAll and panics if an error is returned. It is mainly useful in tests.
func MustWriteFile ¶ added in v0.12.0
MustWriteFile calls ioutil.WriteFile and panics if an error occurs. It is mainly useful in tests.
func NewExternalCmdExit ¶
func NewExternalCmdExit(name string, ws syscall.WaitStatus, pid int) error
func ParseIncompleteVariableRef ¶ added in v0.12.0
ParseIncompleteVariableRef parses an incomplete variable reference.
func ParseVariableRef ¶ added in v0.12.0
ParseVariableRef parses a variable reference.
func PurelyEvalCompound ¶ added in v0.11.0
func SplitIncompleteVariableRef ¶ added in v0.12.0
SplitIncompleteVariableRef splits an incomplete variable reference into three parts: an optional explode operator (either "" or "@"), a namespace part, and a name part.
func SplitVariableRef ¶ added in v0.12.0
SplitVariableRef splits a variable reference into three parts: an optional explode operator (either "" or "@"), a namespace part, and a name part.
func Styled ¶ added in v0.12.0
Styled turns a string, a styled Segment or a styled Text into a styled Text. This is done by applying a range of transformers to the input.
Types ¶
type AddDirer ¶ added in v0.11.0
type AddDirer interface { // AddDir adds a directory with the given weight to some storage. AddDir(dir string, weight float64) error }
AddDirer wraps the AddDir function.
type BuiltinFn ¶
type BuiltinFn struct {
// contains filtered or unexported fields
}
BuiltinFn uses reflection to wrap arbitrary Go functions into Elvish functions.
Parameters are passed following these rules:
1. If the first parameter of function has type *Frame, it gets the current call frame.
2. If (possibly after a *Frame parameter) the first parameter has type RawOptions, it gets a map of options. If the function has not declared an RawOptions parameter but is passed options, an error is thrown.
3. If the last parameter is non-variadic and has type Inputs, it represents an optional parameter that contains the input to this function. If the argument is not supplied, the input channel of the Frame will be used to supply the inputs.
4. Other parameters are converted using elvToGo.
Return values go to the channel part of the stdout port, after being converted using goToElv. If the last return value has type error and is not nil, it is turned into an exception and no ouputting happens. If the last return value is a nil error, it is ignored.
func NewBuiltinFn ¶ added in v0.12.0
NewBuiltinFn creates a new ReflectBuiltinFn instance.
type Callable ¶ added in v0.7.0
type Callable interface { // Call calls the receiver in a Frame with arguments and options. Call(fm *Frame, args []interface{}, opts map[string]interface{}) error }
Callable wraps the Call method.
type Closure ¶
type Closure struct { ArgNames []string // The name for the rest argument. If empty, the function has fixed arity. RestArg string OptNames []string OptDefaults []interface{} Op Op Captured Ns SrcMeta *Source DefBegint int DefEnd int }
Closure is a closure defined in elvish script.
func (*Closure) IterateKeys ¶ added in v0.12.0
type CompilationError ¶ added in v0.6.0
type CompilationError struct { Message string Context util.SourceRange }
CompilationError represents a compilation error and can pretty print it.
func (*CompilationError) Error ¶ added in v0.6.0
func (ce *CompilationError) Error() string
func (*CompilationError) Pprint ¶ added in v0.6.0
func (ce *CompilationError) Pprint(indent string) string
Pprint pretty-prints a compilation error.
type Editor ¶ added in v0.4.0
type Editor interface {
Notify(string, ...interface{})
}
Editor is the interface that the line editor has to satisfy. It is needed so that this package does not depend on the edit package.
type EnvList ¶ added in v0.10.0
EnvList is a variable whose value is constructed from an environment variable by splitting at pathListSeparator. Changes to it are also propagated to the corresponding environment variable. Its elements cannot contain pathListSeparator or \0; attempting to put any in its elements will result in an error.
type Evaler ¶
type Evaler struct { DaemonClient *daemon.Client Editor Editor // contains filtered or unexported fields }
Evaler is used to evaluate elvish sources. It maintains runtime context shared among all evalCtx instances.
func (*Evaler) AddAfterChdir ¶ added in v0.12.0
AddAfterChdir adds a function to run after changing directory.
func (*Evaler) AddBeforeChdir ¶ added in v0.12.0
AddBeforeChdir adds a function to run before changing directory.
func (*Evaler) Chdir ¶ added in v0.12.0
Chdir changes the current directory. On success it also updates the PWD environment variable and records the new directory in the directory history. It runs the functions in beforeChdir immediately before changing the directory, and the functions in afterChdir immediately after (if chdir was successful). It returns nil as long as the directory changing part succeeds.
func (*Evaler) Close ¶ added in v0.11.0
Close releases resources allocated when creating this Evaler. Currently this does nothing and always returns a nil error.
func (*Evaler) Compile ¶
Compile compiles Elvish code in the global scope. If the error is not nil, it always has type CompilationError.
func (*Evaler) EachNsInTop ¶ added in v0.11.0
func (ev *Evaler) EachNsInTop(f func(s string))
EachNsInTop calls the passed function for each namespace that can be used from the top context.
func (*Evaler) EachVariableInTop ¶ added in v0.11.0
EachVariableInTop calls the passed function for each variable name in namespace ns that can be found from the top context.
func (*Evaler) Eval ¶
Eval sets up the Evaler with the given ports and evaluates an Op. The supplied name and text are used in diagnostic messages.
func (*Evaler) EvalSource ¶ added in v0.12.0
EvalSource evaluates a chunk of Elvish source.
func (*Evaler) EvalWithStdPorts ¶ added in v0.12.0
EvalWithStdPorts sets up the Evaler with standard ports and evaluates an Op. The supplied name and text are used in diagnostic messages.
func (*Evaler) InstallBundled ¶ added in v0.11.0
InstallBundled installs a bundled module to the Evaler.
func (*Evaler) InstallDaemonClient ¶ added in v0.11.0
InstallDaemonClient installs a daemon client to the Evaler.
func (*Evaler) InstallModule ¶ added in v0.11.0
InstallModule installs a module to the Evaler so that it can be used with "use $name" from script.
func (*Evaler) PurelyEvalCompound ¶ added in v0.11.0
func (*Evaler) PurelyEvalPartialCompound ¶ added in v0.11.0
func (*Evaler) PurelyEvalPrimary ¶ added in v0.11.0
PurelyEvalPrimary evaluates a primary node without causing any side effects. If this cannot be done, it returns nil.
Currently, only string literals and variables with no @ can be evaluated.
func (*Evaler) SetLibDir ¶ added in v0.11.0
SetLibDir sets the library directory, in which external modules are to be found.
type Exception ¶ added in v0.6.0
type Exception struct { Cause error Traceback *stackTrace }
Exception represents an elvish exception. It is both a Value accessible to elvishscript, and the type of error returned by public facing evaluation methods like (*Evaler)PEval.
func (*Exception) IterateKeys ¶ added in v0.12.0
type ExternalCmd ¶
type ExternalCmd struct {
Name string
}
ExternalCmd is an external command.
func (ExternalCmd) Call ¶
func (e ExternalCmd) Call(fm *Frame, argVals []interface{}, opts map[string]interface{}) error
Call calls an external command.
func (ExternalCmd) Equal ¶ added in v0.10.0
func (e ExternalCmd) Equal(a interface{}) bool
func (ExternalCmd) Hash ¶ added in v0.10.0
func (e ExternalCmd) Hash() uint32
func (ExternalCmd) Kind ¶
func (ExternalCmd) Kind() string
func (ExternalCmd) Repr ¶
func (e ExternalCmd) Repr(int) string
type ExternalCmdExit ¶
type ExternalCmdExit struct { syscall.WaitStatus CmdName string Pid int }
ExternalCmdExit contains the exit status of external commands. If the command was stopped rather than terminated, the Pid field contains the pid of the process.
func (ExternalCmdExit) Error ¶
func (exit ExternalCmdExit) Error() string
type Frame ¶ added in v0.11.0
type Frame struct { *Evaler // contains filtered or unexported fields }
Frame contains information of the current running function, aknin to a call frame in native CPU execution. A Frame is only modified during and very shortly after creation; new Frame's are "forked" when needed.
func NewTopFrame ¶ added in v0.11.0
NewTopFrame creates a top-level Frame.
func (*Frame) Call ¶ added in v0.12.0
Call calls a function with the given arguments and options. It does so in a protected environment so that exceptions thrown are wrapped in an Error.
func (*Frame) CallWithOutputCallback ¶ added in v0.12.0
func (fm *Frame) CallWithOutputCallback(fn Callable, args []interface{}, opts map[string]interface{}, valuesCb func(<-chan interface{}), bytesCb func(*os.File)) error
CallWithOutputCallback calls a function with the given arguments and options, feeding the outputs to the given callbacks. It does so in a protected environment so that exceptions thrown are wrapped in an Error.
func (*Frame) CaptureOutput ¶ added in v0.12.0
func (fm *Frame) CaptureOutput(fn Callable, args []interface{}, opts map[string]interface{}) (vs []interface{}, err error)
CaptureOutput calls a function with the given arguments and options, capturing and returning the output. It does so in a protected environment so that exceptions thrown are wrapped in an Error.
func (*Frame) Close ¶ added in v0.12.0
Close releases resources allocated for this frame. It always returns a nil error. It may be called only once.
func (Frame) EachNsInTop ¶ added in v0.11.0
func (ev Frame) EachNsInTop(f func(s string))
EachNsInTop calls the passed function for each namespace that can be used from the top context.
func (Frame) EachVariableInTop ¶ added in v0.11.0
EachVariableInTop calls the passed function for each variable name in namespace ns that can be found from the top context.
func (*Frame) Eval ¶ added in v0.12.0
Eval evaluates an op. It does so in a protected environment so that exceptions thrown are wrapped in an Error.
func (*Frame) ExecAndUnwrap ¶ added in v0.11.0
func (ctx *Frame) ExecAndUnwrap(desc string, op ValuesOp) ValuesUnwrapper
ExecAndUnwrap executes a ValuesOp and creates an Unwrapper for the obtained values.
func (*Frame) InputChan ¶ added in v0.11.0
func (fm *Frame) InputChan() chan interface{}
InputChan returns a channel from which input can be read.
func (*Frame) Interrupts ¶ added in v0.11.0
func (fm *Frame) Interrupts() <-chan struct{}
Interrupts returns a channel that is closed when an interrupt signal comes.
func (*Frame) IsInterrupted ¶ added in v0.12.0
IsInterrupted reports whether there has been an interrupt.
func (*Frame) IterateInputs ¶ added in v0.11.0
func (fm *Frame) IterateInputs(f func(interface{}))
IterateInputs calls the passed function for each input element.
func (*Frame) OutputChan ¶ added in v0.11.0
func (fm *Frame) OutputChan() chan<- interface{}
OutputChan returns a channel onto which output can be written.
func (*Frame) OutputFile ¶ added in v0.11.0
OutputFile returns a file onto which output can be written.
func (*Frame) ResolveVar ¶ added in v0.11.0
ResolveVar resolves a variable. When the variable cannot be found, nil is returned.
type GlobPattern ¶
GlobPattern is en ephemeral Value generated when evaluating tilde and wildcards.
func (GlobPattern) Concat ¶ added in v0.12.0
func (gp GlobPattern) Concat(v interface{}) (interface{}, error)
func (GlobPattern) Equal ¶ added in v0.10.0
func (gp GlobPattern) Equal(a interface{}) bool
func (GlobPattern) Hash ¶ added in v0.10.0
func (gp GlobPattern) Hash() uint32
func (GlobPattern) Index ¶
func (gp GlobPattern) Index(k interface{}) (interface{}, error)
func (GlobPattern) Kind ¶
func (GlobPattern) Kind() string
func (GlobPattern) RConcat ¶ added in v0.12.0
func (gp GlobPattern) RConcat(v interface{}) (interface{}, error)
func (GlobPattern) Repr ¶
func (gp GlobPattern) Repr(int) string
type LValuesOp ¶
type LValuesOp struct { Body LValuesOpBody Begin, End int }
LValuesOp is an operation on an Frame that produce Variable's.
type LValuesOpBody ¶ added in v0.12.0
LValuesOpBody is the body of an LValuesOp.
type Ns ¶ added in v0.11.0
Ns is a map from names to variables.
func (Ns) Add ¶ added in v0.12.0
Add adds a variable to the namespace and returns the namespace itself.
func (Ns) AddBuiltinFn ¶ added in v0.12.0
AddBuiltinFn adds a builtin function to a namespace. It returns the namespace itself.
func (Ns) AddBuiltinFns ¶ added in v0.12.0
AddBuiltinFns adds builtin functions to a namespace. It returns the namespace itself.
func (Ns) AddFn ¶ added in v0.12.0
AddFn adds a function to a namespace. It returns the namespace itself.
func (Ns) AddNs ¶ added in v0.12.0
AddNs adds a sub-namespace to a namespace. It returns the namespace itself.
func (Ns) IterateKeys ¶ added in v0.12.0
type PipelineError ¶ added in v0.6.0
type PipelineError struct {
Errors []*Exception
}
PipelineError represents the errors of pipelines, in which multiple commands may error.
func (PipelineError) Error ¶ added in v0.6.0
func (pe PipelineError) Error() string
func (PipelineError) Repr ¶ added in v0.6.0
func (pe PipelineError) Repr(indent int) string
type PwdVariable ¶
type PwdVariable struct {
// contains filtered or unexported fields
}
PwdVariable is a variable whose value always reflects the current working directory. Setting it changes the current working directory.
func (PwdVariable) Get ¶
func (PwdVariable) Get() interface{}
func (PwdVariable) Set ¶
func (pwd PwdVariable) Set(v interface{}) error
type RawOptions ¶ added in v0.12.0
type RawOptions map[string]interface{}
func (RawOptions) Scan ¶ added in v0.12.0
func (rawOpts RawOptions) Scan(ptr interface{})
Scan takes a pointer to a struct and scan options into it. A field named FieldName corresponds to the option named field-name, unless the field has a explicit "name" tag.
type Source ¶ added in v0.11.0
type Source struct {
// contains filtered or unexported fields
}
Source describes a piece of source code.
func NewInteractiveSource ¶ added in v0.11.0
NewInteractiveSource returns a Source for a piece of code entered interactively.
func NewInternalSource ¶ added in v0.11.0
func NewModuleSource ¶ added in v0.11.0
NewModuleSource returns a Source for a piece of code used as a module.
func NewScriptSource ¶ added in v0.11.0
NewScriptSource returns a Source for a piece of code used as a script.
func (*Source) IterateKeys ¶ added in v0.12.0
type SrcType ¶ added in v0.11.0
type SrcType int
SrcType records the type of a piece of source code.
const ( // SrcInternal is a special SrcType for internal operations. SrcInternal SrcType = iota // SrcInteractive is the type of source code entered interactively. SrcInteractive // SrcScript is the type of source code used as a script. SrcScript // SrcModule is the type of source code used as a module. SrcModule )
type TestCase ¶ added in v0.12.0
type TestCase struct {
// contains filtered or unexported fields
}
TestCase is a test case for Test.
func (TestCase) DoesNothing ¶ added in v0.12.0
DoesNothing returns t unchanged. It is used to mark that a piece of code should simply does nothing. In particular, it shouldn't have any output and does not error.
func (TestCase) Errors ¶ added in v0.12.0
Errors returns an altered Test that requires the source code to result in any error when evaluated.
func (TestCase) ErrorsWith ¶ added in v0.12.0
ErrorsWith returns an altered Test that requires the source code to result in the specified error when evaluted.
func (TestCase) Prints ¶ added in v0.12.0
Prints returns an altered test that requires the source code to produce the specified output in the byte pipe when evaluated.
func (TestCase) Puts ¶ added in v0.12.0
Puts returns an altered Test that requires the source code to produce the specified values in the value channel when evaluated.
func (TestCase) PutsStrings ¶ added in v0.12.0
Puts returns an altered Test that requires the source code to produce the specified strings in the value channel when evaluated.
type ValueUnwrapper ¶ added in v0.10.0
type ValueUnwrapper struct {
// contains filtered or unexported fields
}
ValueUnwrapper unwraps one Value.
func (ValueUnwrapper) Any ¶ added in v0.10.0
func (u ValueUnwrapper) Any() interface{}
func (ValueUnwrapper) Callable ¶ added in v0.10.0
func (u ValueUnwrapper) Callable() Callable
func (ValueUnwrapper) FdOrClose ¶ added in v0.10.0
func (u ValueUnwrapper) FdOrClose() int
func (ValueUnwrapper) Int ¶ added in v0.10.0
func (u ValueUnwrapper) Int() int
func (ValueUnwrapper) NonNegativeInt ¶ added in v0.10.0
func (u ValueUnwrapper) NonNegativeInt() int
func (ValueUnwrapper) String ¶ added in v0.10.0
func (u ValueUnwrapper) String() string
type ValuesOp ¶
type ValuesOp struct { Body ValuesOpBody Begin, End int }
ValuesOp is an operation on an Frame that produce Value's.
type ValuesOpBody ¶ added in v0.12.0
ValuesOpBody is the body of ValuesOp.
type ValuesUnwrapper ¶ added in v0.10.0
type ValuesUnwrapper struct {
// contains filtered or unexported fields
}
ValuesUnwrapper unwraps []Value.
func (ValuesUnwrapper) One ¶ added in v0.10.0
func (u ValuesUnwrapper) One() ValueUnwrapper
One unwraps the value to be exactly one value.
Notes ¶
Bugs ¶
When evaluating closures, async access to global variables and ports can be problematic.
Source Files ¶
- args_walker.go
- boilerplate.go
- builtin_fn.go
- builtin_fn_cmd.go
- builtin_fn_cmd_unix.go
- builtin_fn_container.go
- builtin_fn_debug.go
- builtin_fn_env.go
- builtin_fn_flow.go
- builtin_fn_fs.go
- builtin_fn_io.go
- builtin_fn_misc.go
- builtin_fn_num.go
- builtin_fn_pred.go
- builtin_fn_str.go
- builtin_fn_styled.go
- builtin_ns.go
- builtin_special.go
- chdir.go
- closure.go
- compilation_error.go
- compile_lvalue.go
- compile_op.go
- compile_value.go
- compiler.go
- editor.go
- env_list.go
- eval.go
- exception.go
- external_cmd.go
- frame.go
- glob.go
- interrupts.go
- must.go
- ns.go
- port.go
- process_unix.go
- purely_eval.go
- pwd.go
- raw_options.go
- resolve.go
- source.go
- stacktrace.go
- std_ports.go
- testutils.go
- unwrap.go
- util.go
- value.go
- variable_ref.go
Directories ¶
Path | Synopsis |
---|---|
Package bundled keeps bundled modules.
|
Package bundled keeps bundled modules. |
Package daemon implements the builtin daemon: module.
|
Package daemon implements the builtin daemon: module. |
Package re implements the re: module for using regular expressions.
|
Package re implements the re: module for using regular expressions. |
Package str exposes functionality from Go's strings package as an Elvish module.
|
Package str exposes functionality from Go's strings package as an Elvish module. |
Package vals contains basic facilities for manipulating values used in the Elvish runtime.
|
Package vals contains basic facilities for manipulating values used in the Elvish runtime. |
Package vars contains basic types for manipulating Elvish variables.
|
Package vars contains basic types for manipulating Elvish variables. |