eval

package
v0.15.0 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Jan 24, 2021 License: BSD-2-Clause Imports: 46 Imported by: 0

Documentation

Overview

Package eval handles evaluation of parsed Elvish code and provides runtime facilities.

Index

Constants

View Source
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

View Source
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{}{}
)
View Source
var (
	ErrBadglobPattern          = errors.New("bad globPattern; elvish bug")
	ErrCannotDetermineUsername = errors.New("cannot determine user name from glob pattern")
)

Errors thrown when globbing.

View Source
var (
	// ErrExternalCmdOpts is thrown when an external command is passed Elvish
	// options.
	//
	// TODO: Catch this kind of errors at compilation time.
	ErrExternalCmdOpts = errors.New("external commands don't accept elvish options")
	// ErrImplicitCdNoArg is thrown when an implicit cd form is passed arguments.
	ErrImplicitCdNoArg = errors.New("implicit cd accepts no arguments")
)
View Source
var (
	ErrMustFollowWildcard    = errors.New("must follow wildcard")
	ErrModifierMustBeString  = errors.New("modifier must be string")
	ErrWildcardNoMatch       = errors.New("wildcard has no match")
	ErrMultipleTypeModifiers = errors.New("only one type modifier allowed")
	ErrUnknownTypeModifier   = errors.New("unknown type modifier")
)
View Source
var (
	// ErrArgs is thrown when a Go function gets erroneous arguments.
	//
	// TODO(xiaq): Replace this single error type with multiple types that carry
	// richer error information.
	ErrArgs = errors.New("args error")
	// ErrNoOptAccepted is thrown when a Go function that does not accept any
	// options gets passed options.
	ErrNoOptAccepted = errors.New("function does not accept any options")
)
View Source
var (
	// ClosedChan is a closed channel, suitable as a placeholder input channel.
	ClosedChan = getClosedChan()
	// BlackholeChan is a channel that absorbs all values written to it,
	// suitable as a placeholder output channel.
	BlackholeChan = getBlackholeChan()
	// DevNull is /dev/null, suitable as a placeholder file for either input or
	// output.
	DevNull = getDevNull()

	// DummyInputPort is a port made up from DevNull and ClosedChan, suitable as
	// a placeholder input port.
	DummyInputPort = &Port{File: DevNull, Chan: ClosedChan}
	// DummyOutputPort is a port made up from DevNull and BlackholeChan,
	// suitable as a placeholder output port.
	DummyOutputPort = &Port{File: DevNull, Chan: BlackholeChan}
)
View Source
var ErrBadBase = errors.New("bad base")

ErrBadBase is thrown by the "base" builtin if the base is smaller than 2 or greater than 36.

View Source
var ErrInputOfEawkMustBeString = errors.New("input of eawk must be string")

ErrInputOfEawkMustBeString is thrown when eawk gets a non-string input.

View Source
var ErrInterrupted = errors.New("interrupted")

ErrInterrupted is thrown when the execution is interrupted by a signal.

View Source
var ErrNonExistentEnvVar = errors.New("non-existent environment variable")

ErrNonExistentEnvVar is raised by the get-env command when the environment variable does not exist.

View Source
var ErrNotInSameProcessGroup = errors.New("not in the same process group")

ErrNotInSameProcessGroup is thrown when the process IDs passed to fg are not in the same process group.

View Source
var ErrStoreNotConnected = errors.New("store not connected")

ErrStoreNotConnected is thrown by dir-history when the store is not connected.

View Source
var ErrUncomparable = errs.BadValue{
	What:  `inputs to "order"`,
	Valid: "comparable values", Actual: "uncomparable values"}

ErrUncomparable is raised by the order command when inputs contain uncomparable values.

View Source
var Getwd func() (string, error) = os.Getwd

Getwd allows for unit test error injection.

View Source
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.

View Source
var OK = &exception{}

OK is a pointer to a special value of Exception that represents the absence of exception.

View Source
var TimeAfter = func(fm *Frame, d time.Duration) <-chan time.Time {
	return time.After(d)
}

TimeAfter is used by the sleep command to obtain a channel that is delivered a value after the specified time.

It is a variable to allow for unit tests to efficiently test the behavior of the `sleep` command, both by eliminating an actual sleep and verifying the duration was properly parsed.

Functions

func GetCompilationError

func GetCompilationError(e interface{}) *diag.Error

GetCompilationError returns a *diag.Error if the given value is a compilation error. Otherwise it returns nil.

func IsUnqualified added in v0.15.0

func IsUnqualified(name string) bool

IsUnqualified returns whether name is an unqualified variable name.

func ListenInterrupts added in v0.14.0

func ListenInterrupts() (<-chan struct{}, func())

ListenInterrupts returns a channel that is closed when SIGINT or SIGQUIT has been received by the process. It also returns a function that should be called when the channel is no longer needed.

func MakePipelineError added in v0.15.0

func MakePipelineError(excs []Exception) error

MakePipelineError builds an error from the execution results of multiple commands in a pipeline.

If all elements are either nil or OK, it returns nil. If there is exactly non-nil non-OK Exception, it returns it. Otherwise, it return a PipelineError built from the slice, with nil items turned into OK's for easier access from Elvish code.

func MakeVarFromName added in v0.15.0

func MakeVarFromName(name string) vars.Var

MakeVarFromName creates a Var with a suitable type constraint inferred from the name.

func NewExternalCmdExit

func NewExternalCmdExit(name string, ws syscall.WaitStatus, pid int) error

NewExternalCmdExit constructs an error for representing a non-zero exit from an external command.

func NewPwdVar added in v0.15.0

func NewPwdVar(ev *Evaler) vars.Var

NewPwdVar returns a variable who value is synchronized with the path of the current working directory.

func NoSuchVariable added in v0.15.0

func NoSuchVariable(name string) error

NoSuchVariable returns an error representing that a variable can't be found.

func Reason added in v0.15.0

func Reason(err error) error

Reason returns the Reason field if err is an Exception. Otherwise it returns err itself.

func SplitIncompleteQNameNs added in v0.15.0

func SplitIncompleteQNameNs(qname string) (ns, name string)

SplitIncompleteQNameNs splits an incomplete qualified variable name into the namespace part and the name part.

func SplitQName added in v0.15.0

func SplitQName(qname string) (first, rest string)

SplitQName splits a qualified name into the first namespace segment and the rest.

func SplitQNameSegs added in v0.15.0

func SplitQNameSegs(qname string) []string

SplitQNameSegs splits a qualified name into namespace segments.

func SplitSigil added in v0.15.0

func SplitSigil(ref string) (sigil string, qname string)

SplitSigil splits any leading sigil from a qualified variable name.

Types

type CallCfg added in v0.15.0

type CallCfg struct {
	// Arguments to pass to the the function.
	Args []interface{}
	// Options to pass to the function.
	Opts map[string]interface{}
	// The name of the internal source that is calling the function.
	From string
}

CallCfg keeps configuration for the (*Evaler).Call method.

type Callable

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.

func NewExternalCmd added in v0.15.0

func NewExternalCmd(name string) Callable

NewExternalCmd returns a callable that executes the named external command.

An external command converts all arguments to strings, and does not accept any option.

func NewGoFn

func NewGoFn(name string, impl interface{}) Callable

NewGoFn wraps a Go function into an Elvish function using reflection.

Parameters are passed following these rules:

1. If the first parameter of function has type *Frame, it gets the current call frame.

2. After the potential *Frame argument, the first parameter has type RawOptions, it gets a map of option names to their values.

Alternatively, this parameter may be a (non-pointer) struct whose pointer type implements a SetDefaultOptions method that takes no arguments and has no return value. In this case, a new instance of the struct is constructed, the SetDefaultOptions method is called, and any option passed to the Elvish function is used to populate the fields of the struct. Field names are mapped to option names using strutil.CamelToDashed, unless they have a field tag "name", in which case the tag is preferred.

If the function does not declare that it accepts options via either method described above, it accepts no options.

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 vals.ScanToGo.

Return values go to the channel part of the stdout port, after being converted using vals.FromGo. If the last return value has type error and is not nil, it is turned into an exception and no outputting happens. If the last return value is a nil error, it is ignored.

type Editor

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 EvalCfg added in v0.14.0

type EvalCfg struct {
	// Ports to use in evaluation. The first 3 elements, if not specified
	// (either being nil or Ports containing fewer than 3 elements),
	// will be filled with DummyInputPort, DummyOutputPort and
	// DummyOutputPort respectively.
	Ports []*Port
	// Callback to get a channel of interrupt signals and a function to call
	// when the channel is no longer needed.
	Interrupt func() (<-chan struct{}, func())
	// Whether the Eval method should try to put the Elvish in the foreground
	// after the code is executed.
	PutInFg bool
	// If not nil, used the given global namespace, instead of Evaler's own.
	Global *Ns
}

EvalCfg keeps configuration for the (*Evaler).Eval method.

type Evaler

type Evaler struct {
	// contains filtered or unexported fields
}

Evaler provides methods for evaluating code, and maintains state that is persisted between evaluation of different pieces of code. An Evaler is safe to use concurrently.

func NewEvaler

func NewEvaler() *Evaler

NewEvaler creates a new Evaler.

func (*Evaler) AddAfterChdir

func (ev *Evaler) AddAfterChdir(f func(string))

AddAfterChdir adds a function to run after changing directory.

func (*Evaler) AddBeforeChdir

func (ev *Evaler) AddBeforeChdir(f func(string))

AddBeforeChdir adds a function to run before changing directory.

func (*Evaler) AddBuiltin added in v0.15.0

func (ev *Evaler) AddBuiltin(ns *Ns)

AddBuiltin merges the given *Ns into the builtin namespace.

func (*Evaler) AddGlobal added in v0.15.0

func (ev *Evaler) AddGlobal(ns *Ns)

AddGlobal merges the given *Ns into the global namespace.

func (*Evaler) AddModule added in v0.15.0

func (ev *Evaler) AddModule(name string, mod *Ns)

AddModule add an internal module so that it can be used with "use $name" from script.

func (*Evaler) Builtin added in v0.15.0

func (ev *Evaler) Builtin() *Ns

Builtin returns the builtin Ns.

func (*Evaler) Call added in v0.15.0

func (ev *Evaler) Call(f Callable, callCfg CallCfg, evalCfg EvalCfg) error

Call calls a given function.

func (*Evaler) Chdir

func (ev *Evaler) Chdir(path string) error

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) Check added in v0.15.0

func (ev *Evaler) Check(src parse.Source, w io.Writer) (*parse.Error, *diag.Error)

Check checks the given source code for any parse error and compilation error. It always tries to compile the code even if there is a parse error; both return values may be non-nil. If w is not nil, deprecation messages are written to it.

func (*Evaler) CheckTree added in v0.15.0

func (ev *Evaler) CheckTree(tree parse.Tree, w io.Writer) *diag.Error

CheckTree checks the given parsed source tree for compilation errors. If w is not nil, deprecation messages are written to it.

func (*Evaler) DaemonClient

func (ev *Evaler) DaemonClient() daemon.Client

DaemonClient returns the daemon client associated with the Evaler.

func (*Evaler) Editor

func (ev *Evaler) Editor() Editor

DaemonClient returns the editor associated with the Evaler.

func (*Evaler) Eval

func (ev *Evaler) Eval(src parse.Source, cfg EvalCfg) error

Eval evaluates a piece of source code with the given configuration. The returned error may be a parse error, compilation error or exception.

func (*Evaler) Global added in v0.15.0

func (ev *Evaler) Global() *Ns

Global returns the global Ns.

func (*Evaler) PurelyEvalCompound

func (ev *Evaler) PurelyEvalCompound(cn *parse.Compound) (string, bool)

func (*Evaler) PurelyEvalPartialCompound

func (ev *Evaler) PurelyEvalPartialCompound(cn *parse.Compound, upto int) (string, bool)

func (*Evaler) PurelyEvalPrimary

func (ev *Evaler) PurelyEvalPrimary(pn *parse.Primary) interface{}

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) SetArgs

func (ev *Evaler) SetArgs(args []string)

SetArgs sets the value of the $args variable to a list of strings, built from the given slice.

func (*Evaler) SetDaemonClient added in v0.15.0

func (ev *Evaler) SetDaemonClient(client daemon.Client)

SetDaemonClient sets the daemon client associated with the Evaler.

func (*Evaler) SetLibDir

func (ev *Evaler) SetLibDir(libDir string)

SetLibDir sets the library directory for finding external modules.

func (*Evaler) ValuePrefix added in v0.15.0

func (ev *Evaler) ValuePrefix() string

ValuePrefix returns the prefix to prepend to value outputs when writing them to terminal.

type Exception

type Exception interface {
	error
	diag.Shower
	Reason() error
	StackTrace() *StackTrace
	// contains filtered or unexported methods
}

Exception represents exceptions. It is both a Value accessible to Elvish code, and can be returned by methods like like (*Evaler).Eval.

func NewException added in v0.15.0

func NewException(reason error, stackTrace *StackTrace) Exception

NewException creates a new Exception.

type ExternalCmdExit

type ExternalCmdExit struct {
	syscall.WaitStatus
	CmdName string
	Pid     int
}

ExternalCmdExit contains the exit status of external commands.

func (ExternalCmdExit) Error

func (exit ExternalCmdExit) Error() string

func (ExternalCmdExit) Fields added in v0.14.0

func (exit ExternalCmdExit) Fields() vals.StructMap

type FailError added in v0.14.0

type FailError struct{ Content interface{} }

FailError is an error returned by the "fail" command.

func (FailError) Error added in v0.14.0

func (e FailError) Error() string

Error returns the string representation of the cause.

func (FailError) Fields added in v0.14.0

func (e FailError) Fields() vals.StructMap

Fields returns a structmap for accessing fields from Elvish.

type Flow

type Flow uint

Flow is a special type of error used for control flows.

const (
	Return Flow = iota
	Break
	Continue
)

Control flows.

func (Flow) Error

func (f Flow) Error() string

func (Flow) Fields added in v0.14.0

func (f Flow) Fields() vals.StructMap

func (Flow) Show added in v0.14.0

func (f Flow) Show(string) string

Show shows the flow "error".

type Frame

type Frame struct {
	Evaler *Evaler
	// contains filtered or unexported fields
}

Frame contains information of the current running function, akin 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 (*Frame) CaptureOutput

func (fm *Frame) CaptureOutput(f func(*Frame) error) ([]interface{}, error)

CaptureOutput captures the output of a given callback that operates on a Frame.

func (*Frame) Close

func (fm *Frame) Close() error

Close releases resources allocated for this frame. It always returns a nil error. It may be called only once.

func (*Frame) Deprecate added in v0.14.0

func (fm *Frame) Deprecate(msg string, ctx *diag.Context, minLevel int)

Deprecate shows a deprecation message. The message is not shown if the same deprecation message has been shown for the same location before.

func (*Frame) ErrorFile added in v0.15.0

func (fm *Frame) ErrorFile() *os.File

ErrorFile returns a file onto which error messages can be written.

func (*Frame) Eval

func (fm *Frame) Eval(src parse.Source, r diag.Ranger, ns *Ns) (*Ns, error)

Eval evaluates a piece of code in a copy of the current Frame. It returns the altered local namespace, and any parse error, compilation error or exception.

See PrepareEval for a description of the arguments.

func (*Frame) InputChan

func (fm *Frame) InputChan() chan interface{}

InputChan returns a channel from which input can be read.

func (*Frame) InputFile

func (fm *Frame) InputFile() *os.File

InputFile returns a file from which input can be read.

func (*Frame) Interrupts

func (fm *Frame) Interrupts() <-chan struct{}

Interrupts returns a channel that is closed when an interrupt signal comes.

func (*Frame) IsInterrupted

func (fm *Frame) IsInterrupted() bool

IsInterrupted reports whether there has been an interrupt.

func (*Frame) IterateInputs

func (fm *Frame) IterateInputs(f func(interface{}))

IterateInputs calls the passed function for each input element.

func (*Frame) OutputChan

func (fm *Frame) OutputChan() chan<- interface{}

OutputChan returns a channel onto which output can be written.

func (*Frame) OutputFile

func (fm *Frame) OutputFile() *os.File

OutputFile returns a file onto which output can be written.

func (*Frame) PipeOutput added in v0.14.0

func (fm *Frame) PipeOutput(f func(*Frame) error, vCb func(<-chan interface{}), bCb func(*os.File)) error

PipeOutput calls a callback with output piped to the given output handlers.

func (*Frame) PrepareEval added in v0.15.0

func (fm *Frame) PrepareEval(src parse.Source, r diag.Ranger, ns *Ns) (*Ns, func() Exception, error)

PrepareEval prepares a piece of code for evaluation in a copy of the current Frame. If r is not nil, it is added to the traceback of the evaluation context. If ns is not nil, it is used in place of the current local namespace as the namespace to evaluate the code in.

If there is any parse error or compilation error, it returns a nil *Ns, nil function and the error. If there is no parse error or compilation error, it returns the altered local namespace, function that can be called to actuate the evaluation, and a nil error.

type Inputs

type Inputs func(func(interface{}))

Inputs is the type that the last parameter of a Go-native function can take. When that is the case, it is a callback to get inputs. See the doc of GoFn for details.

type Ns

type Ns struct {
	// contains filtered or unexported fields
}

Ns is the runtime representation of a namespace. The zero value of Ns is an empty namespace. To create a non-empty Ns, use either NsBuilder or CombineNs.

An Ns is immutable after creation.

func CombineNs added in v0.15.0

func CombineNs(ns1 *Ns, ns2 *Ns) *Ns

CombineNs returns an *Ns that contains all the bindings from both ns1 and ns2. Names in ns2 takes precedence over those in ns1.

func (*Ns) Equal

func (ns *Ns) Equal(rhs interface{}) bool

Equal returns whether rhs has the same identity as ns.

func (*Ns) HasName

func (ns *Ns) HasName(k string) bool

HasName reports whether the Ns has a variable with the given name.

func (*Ns) Hash

func (ns *Ns) Hash() uint32

Hash returns a hash of the address of ns.

func (*Ns) Index

func (ns *Ns) Index(k interface{}) (interface{}, bool)

Index looks up a variable with the given name, and returns its value if it exists. This is only used for introspection from Elvish code; for introspection from Go code, use IndexName.

func (*Ns) IndexName added in v0.15.0

func (ns *Ns) IndexName(k string) vars.Var

Index looks up a variable with the given name, and returns its value if it exists, or nil if it does not. This is the type-safe version of Index and is useful for introspection from Go code.

func (*Ns) IterateKeys

func (ns *Ns) IterateKeys(f func(interface{}) bool)

IterateKeys produces the names of all the variables in this Ns.

func (*Ns) IterateNames added in v0.15.0

func (ns *Ns) IterateNames(f func(string))

IterateNames produces the names of all variables in the Ns. It is the type-safe version of IterateKeys and is useful for introspection from Go code. It doesn't support breaking early.

func (*Ns) Kind

func (ns *Ns) Kind() string

Kind returns "ns".

func (*Ns) Repr

func (ns *Ns) Repr(int) string

Repr returns an opaque representation of the Ns showing its address.

type NsBuilder added in v0.15.0

type NsBuilder map[string]vars.Var

NsBuilder is a helper type used for building an Ns.

func (NsBuilder) Add added in v0.15.0

func (nb NsBuilder) Add(name string, v vars.Var) NsBuilder

Add adds a variable.

func (NsBuilder) AddFn added in v0.15.0

func (nb NsBuilder) AddFn(name string, v Callable) NsBuilder

AddFn adds a function. The resulting variable will be read-only.

func (NsBuilder) AddGoFn added in v0.15.0

func (nb NsBuilder) AddGoFn(nsName, name string, impl interface{}) NsBuilder

AddGoFn adds a Go function. The resulting variable will be read-only.

func (NsBuilder) AddGoFns added in v0.15.0

func (nb NsBuilder) AddGoFns(nsName string, fns map[string]interface{}) NsBuilder

AddGoFns adds Go functions. The resulting variables will be read-only.

func (NsBuilder) AddNs added in v0.15.0

func (nb NsBuilder) AddNs(name string, v *Ns) NsBuilder

AddNs adds a sub-namespace. The resulting variable will be read-only.

func (NsBuilder) Ns added in v0.15.0

func (nb NsBuilder) Ns() *Ns

Build builds an Ns.

type PipelineError

type PipelineError struct {
	Errors []Exception
}

PipelineError represents the errors of pipelines, in which multiple commands may error.

func (PipelineError) Error

func (pe PipelineError) Error() string

Error returns a plain text representation of the pipeline error.

func (PipelineError) Fields added in v0.14.0

func (pe PipelineError) Fields() vals.StructMap

type Port

type Port struct {
	File *os.File
	Chan chan interface{}
	// contains filtered or unexported fields
}

Port conveys data stream. It always consists of a byte band and a channel band.

func CapturePort added in v0.15.0

func CapturePort() (*Port, func() []interface{}, error)

CapturePort returns an output *Port whose value and byte components are both connected to an internal pipe that saves the output. It also returns a function to call to obtain the captured output.

func FilePort added in v0.15.0

func FilePort(f *os.File, valuePrefix string) (*Port, func())

FilePort returns an output *Port where the byte component is the file itself, and the value component is converted to an internal channel that writes each value to the file, prepending with a prefix. It also returns a cleanup function, which should be called when the *Port is no longer needed.

func PipePort added in v0.15.0

func PipePort(vCb func(<-chan interface{}), bCb func(*os.File)) (*Port, func(), error)

PipePort returns an output *Port whose value and byte components are both piped. The supplied functions are called on a separate goroutine with the read ends of the value and byte components of the port. It also returns a function to clean up the port and wait for the callbacks to finish.

func PortsFromFiles added in v0.14.0

func PortsFromFiles(files [3]*os.File, prefix string) ([]*Port, func())

PortsFromFiles builds 3 ports from 3 files. It also returns a function that should be called when the ports are no longer needed.

func PortsFromStdFiles added in v0.15.0

func PortsFromStdFiles(prefix string) ([]*Port, func())

PortsFromStdFiles is a shorthand for calling PortsFromFiles with os.Stdin, os.Stdout and os.Stderr.

func StringCapturePort added in v0.15.0

func StringCapturePort() (*Port, func() []string, error)

StringCapturePort is like CapturePort, but processes value outputs by stringifying them and prepending an output marker.

type RawOptions

type RawOptions map[string]interface{}

RawOptions is the type of an argument a Go-native function can take to declare that it wants to parse options itself. See the doc of NewGoFn for details.

type StackTrace added in v0.15.0

type StackTrace struct {
	Head *diag.Context
	Next *StackTrace
}

StackTrace represents a stack trace as a linked list of diag.Context. The head is the innermost stack.

Since pipelines can call multiple functions in parallel, all the StackTrace nodes form a DAG.

func MakeStackTrace added in v0.15.0

func MakeStackTrace(entries ...*diag.Context) *StackTrace

MakeStackTrace creates a new StackTrace from the given Context entries, using the first entry as the head.

type UnsupportedOptionsError added in v0.15.0

type UnsupportedOptionsError struct {
	Options []string
}

UnsupportedOptionsError is an error returned by a closure call when there are unsupported options.

func (UnsupportedOptionsError) Error added in v0.15.0

func (er UnsupportedOptionsError) Error() string

Notes

Bugs

  • When evaluating closures, async access to global variables and ports can be problematic.

Directories

Path Synopsis
Package errs declares error types used as exception causes.
Package errs declares error types used as exception causes.
mods
bundled
Package bundled manages modules written in Elvish that are bundled with the elvish binary.
Package bundled manages modules written in Elvish that are bundled with the elvish binary.
daemon
Package daemon implements the builtin daemon: module.
Package daemon implements the builtin daemon: module.
math
Package math exposes functionality from Go's math package as an elvish module.
Package math exposes functionality from Go's math package as an elvish module.
path
Package path provides functions for manipulating filesystem path names.
Package path provides functions for manipulating filesystem path names.
platform
Package platform exposes variables and functions that deal with the specific platform being run on, such as the OS name and CPU architecture.
Package platform exposes variables and functions that deal with the specific platform being run on, such as the OS name and CPU architecture.
re
Package re implements a regular expression module.
Package re implements a regular expression module.
str
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.
unix
Package unix exports an Elvish namespace that contains variables and functions that deal with features unique to UNIX-like operating systems.
Package unix exports an Elvish namespace that contains variables and functions that deal with features unique to UNIX-like operating systems.
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.

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL