eval

package
v0.0.0-...-b77b3d7 Latest Latest
Warning

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

Go to latest
Published: Feb 10, 2018 License: BSD-2-Clause Imports: 39 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 (
	// ErrNoLibDir is thrown by "use" when the Evaler does not have a library
	// directory.
	ErrNoLibDir = errors.New("Evaler does not have a lib directory")
	// 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")
)
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 (
	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

View Source
var (
	ErrExternalCmdOpts = errors.New("external commands don't accept elvish options")
	ErrCdNoArg         = 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")
)
View Source
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
)
View Source
var (
	ErrNoArgAccepted = errors.New("no argument accepted")
	ErrNoOptAccepted = errors.New("no option accepted")
)
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 ErrArgs = errors.New("args error")
View Source
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.

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 ErrImpure = errors.New("expression is impure")
View Source
var ErrInput = errors.New("input error")
View Source
var ErrInterrupted = errors.New("interrupted")
View Source
var ErrMoreThanOneRest = errors.New("more than one @ lvalue")

ErrMoreThanOneRest is returned when the LHS of an assignment contains more than one rest variables.

View Source
var ErrNotInSameGroup = errors.New("not in the same process group")
View Source
var ErrStoreNotConnected = errors.New("store not connected")
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 the zero value of Exception, representing the absence of exception.

Functions

func Chdir

func Chdir(path string, store AddDirer) 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 returns nil as long as the directory changing part succeeds.

func ClosePorts

func ClosePorts(ports []*Port)

ClosePorts closes a list of Ports.

func ComposeExceptionsFromPipeline

func ComposeExceptionsFromPipeline(excs []*Exception) error

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

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 MakeVariableRef

func MakeVariableRef(explode bool, ns string, name string) string

MakeVariableRef builds a variable reference.

func NewExternalCmdExit

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

func NewVariableFromPtr

func NewVariableFromPtr(ptr interface{}) vartypes.Variable

NewVariableFromPtr creates a variable from a pointer. The variable is kept in sync with the value the pointer points to, using elvToGo and goToElv conversions when Get and Set.

func ParseIncompleteVariableRef

func ParseIncompleteVariableRef(text string) (explode bool, ns string, name string)

ParseIncompleteVariableRef parses an incomplete variable reference.

func ParseVariableRef

func ParseVariableRef(text string) (explode bool, ns string, name string)

ParseVariableRef parses a variable reference.

func PurelyEvalCompound

func PurelyEvalCompound(cn *parse.Compound) (string, error)

func RunTests

func RunTests(t *testing.T, evalTests []Test, makeEvaler func() *Evaler)

RunTests runs test cases. For each test case, a new Evaler is made by calling makeEvaler.

func ScanArgs

func ScanArgs(src []interface{}, dstPtrs ...interface{})

ScanArgs scans arguments into pointers to supported argument types. If the arguments cannot be scanned, an error is thrown.

func ScanArgsOptionalInput

func ScanArgsOptionalInput(ec *Frame, src []interface{}, dstArgs ...interface{}) func(func(interface{}))

ScanArgsOptionalInput is like ScanArgs, but the argument can contain an optional iterable value at the end containing inputs to the function. The return value is a function that iterates the iterable value if it exists, or the input otherwise.

func ScanArgsVariadic

func ScanArgsVariadic(src []interface{}, dstPtrs ...interface{})

ScanArgsVariadic is like ScanArgs, but the last element of args should be a pointer to a slice, and the rest of arguments will be scanned into it.

func ScanOpts

func ScanOpts(m map[string]interface{}, opts ...OptToScan)

ScanOpts scans options from a map.

func ScanOptsToStruct

func ScanOptsToStruct(m map[string]interface{}, structPtr interface{})

ScanOptsToStruct scan options from a map like ScanOpts except the destination is a struct whose fields correspond to the options to be parsed. A field named FieldName corresponds to the option named field-name, unless the field has a explicit "name" tag.

func SplitIncompleteVariableRef

func SplitIncompleteVariableRef(text string) (explodePart, nsPart, name string)

SplitIncompleteVariableRef splits an incomplete variable reference into three parts: an optional explode operator (either "" or "@"), a namespace part, and a name part.

func SplitVariableRef

func SplitVariableRef(text string) (explodePart, nsPart, name string)

SplitVariableRef splits a variable reference into three parts: an optional explode operator (either "" or "@"), a namespace part, and a name part.

func TakeNoArg

func TakeNoArg(args []interface{})

func TakeNoOpt

func TakeNoOpt(opts map[string]interface{})

Types

type AddDirer

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.
  1. If (possibly after a *Frame parameter) the first parameter has type Options, it gets a map of options. If the function has not declared an Options parameter but is passed options, an error is thrown.
  1. 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

func NewBuiltinFn(name string, impl interface{}) *BuiltinFn

NewBuiltinFn creates a new ReflectBuiltinFn instance.

func (*BuiltinFn) Call

func (b *BuiltinFn) Call(f *Frame, args []interface{}, opts map[string]interface{}) error

Call calls the implementation using reflection.

func (*BuiltinFn) Equal

func (b *BuiltinFn) Equal(rhs interface{}) bool

Equal compares identity.

func (*BuiltinFn) Hash

func (b *BuiltinFn) Hash() uint32

Hash hashes the address.

func (*BuiltinFn) Kind

func (*BuiltinFn) Kind() string

Kind returns "fn".

func (*BuiltinFn) Repr

func (b *BuiltinFn) Repr(int) string

Repr returns an opaque representation "<builtin $name>".

type Callable

type Callable interface {
	// Call calls the receiver in a Frame with arguments and options.
	Call(ec *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
}

Closure is a closure defined in elvish script.

func (*Closure) Call

func (c *Closure) Call(ec *Frame, args []interface{}, opts map[string]interface{}) error

Call calls a closure.

func (*Closure) Equal

func (c *Closure) Equal(rhs interface{}) bool

Equal compares by identity.

func (*Closure) Hash

func (c *Closure) Hash() uint32

func (*Closure) Kind

func (*Closure) Kind() string

Kind returns "fn".

func (*Closure) Repr

func (c *Closure) Repr(int) string

Repr returns an opaque representation "<closure 0x23333333>".

type CompilationError

type CompilationError struct {
	Message string
	Context util.SourceRange
}

CompilationError represents a compilation error and can pretty print it.

func (*CompilationError) Error

func (ce *CompilationError) Error() string

func (*CompilationError) Pprint

func (ce *CompilationError) Pprint(indent string) string

Pprint pretty-prints a compilation error.

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 EnvList

type EnvList struct {
	sync.RWMutex
	// contains filtered or unexported fields
}

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.

func (*EnvList) Get

func (envli *EnvList) Get() interface{}

Get returns a Value for an EnvPathList.

func (*EnvList) Set

func (envli *EnvList) Set(v interface{}) error

Set sets an EnvPathList. The underlying environment variable is set.

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 NewEvaler

func NewEvaler() *Evaler

NewEvaler creates a new Evaler.

func (*Evaler) Close

func (ev *Evaler) Close()

Close releases resources allocated when creating this Evaler.

func (*Evaler) Compile

func (ev *Evaler) Compile(n *parse.Chunk, src *Source) (Op, error)

Compile compiles elvish code in the global scope. If the error is not nil, it always has type CompilationError.

func (*Evaler) EachNsInTop

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

func (ev *Evaler) EachVariableInTop(ns string, f func(s string))

EachVariableInTop calls the passed function for each variable name in namespace ns that can be found from the top context.

func (*Evaler) Eval

func (ev *Evaler) Eval(op Op, src *Source) error

Eval sets up the Evaler with standard ports and evaluates an Op. The supplied name and text are used in diagnostic messages.

func (*Evaler) EvalWithPorts

func (ev *Evaler) EvalWithPorts(ports []*Port, op Op, src *Source) error

EvalWithPorts sets up the Evaler with the given ports and evaluates an Op. The supplied name and text are used in diagnostic messages.

func (*Evaler) InstallBundled

func (ev *Evaler) InstallBundled(name, src string)

InstallBundled installs a bundled module to the Evaler.

func (*Evaler) InstallDaemonClient

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

InstallDaemonClient installs a daemon client to the Evaler.

func (*Evaler) InstallModule

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

InstallModule installs a module to the Evaler so that it can be used with "use $name" from script.

func (*Evaler) PurelyEvalCompound

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

func (*Evaler) PurelyEvalPartialCompound

func (ev *Evaler) PurelyEvalPartialCompound(cn *parse.Compound, upto *parse.Indexing) (string, error)

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 $args builtin variable.

func (*Evaler) SetLibDir

func (ev *Evaler) SetLibDir(libDir string)

SetLibDir sets the library directory, in which external modules are to be found.

func (*Evaler) Source

func (ev *Evaler) Source(name, path string) error

Source evaluates the content of a file.

func (*Evaler) SourceText

func (ev *Evaler) SourceText(src *Source) error

SourceText evaluates a chunk of elvish source.

type Exception

type Exception struct {
	Cause     error
	Traceback *util.SourceRange
}

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

func (exc *Exception) Bool() bool

func (*Exception) Equal

func (exc *Exception) Equal(rhs interface{}) bool

Equal compares by identity.

func (*Exception) Error

func (exc *Exception) Error() string

func (*Exception) Hash

func (exc *Exception) Hash() uint32

func (*Exception) Kind

func (exc *Exception) Kind() string

func (*Exception) Pprint

func (exc *Exception) Pprint(indent string) string

func (*Exception) Repr

func (exc *Exception) Repr(indent int) string

type ExternalCmd

type ExternalCmd struct {
	Name string
}

ExternalCmd is an external command.

func (ExternalCmd) Call

func (e ExternalCmd) Call(ec *Frame, argVals []interface{}, opts map[string]interface{}) error

Call calls an external command.

func (ExternalCmd) Equal

func (e ExternalCmd) Equal(a interface{}) bool

func (ExternalCmd) Hash

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

func (f Flow) Pprint(string) string

func (Flow) Repr

func (f Flow) Repr(int) string

type Frame

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

func NewTopFrame(ev *Evaler, src *Source, ports []*Port) *Frame

NewTopFrame creates a top-level Frame.

func (Frame) EachNsInTop

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

func (ev Frame) EachVariableInTop(ns string, f func(s string))

EachVariableInTop calls the passed function for each variable name in namespace ns that can be found from the top context.

func (*Frame) ExecAndUnwrap

func (ctx *Frame) ExecAndUnwrap(desc string, op ValuesOp) ValuesUnwrapper

ExecAndUnwrap executes a ValuesOp and creates an Unwrapper for the obtained values.

func (*Frame) InputChan

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

InputChan returns a channel from which input can be read.

func (*Frame) InputFile

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

InputFile returns a file from which input can be read.

func (*Frame) Interrupts

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

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

func (*Frame) IsInterrupted

func (ec *Frame) IsInterrupted() bool

IsInterrupted reports whether there has been an interrupt.

func (*Frame) IterateInputs

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

IterateInputs calls the passed function for each input element.

func (*Frame) OutputChan

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

OutputChan returns a channel onto which output can be written.

func (*Frame) OutputFile

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

OutputFile returns a file onto which output can be written.

func (*Frame) PCall

func (ec *Frame) PCall(f Callable, args []interface{}, opts map[string]interface{}) (err error)

func (*Frame) PCaptureOutput

func (ec *Frame) PCaptureOutput(fn Callable, args []interface{}, opts map[string]interface{}) (vs []interface{}, err error)

func (*Frame) PCaptureOutputInner

func (ec *Frame) PCaptureOutputInner(fn Callable, args []interface{}, opts map[string]interface{}, valuesCb func(<-chan interface{}), bytesCb func(*os.File)) error

func (*Frame) PEval

func (ec *Frame) PEval(op Op) (err error)

PEval evaluates an op in a protected environment so that calls to errorf are wrapped in an Error.

func (*Frame) ResolveVar

func (ec *Frame) ResolveVar(n, name string) vartypes.Variable

ResolveVar resolves a variable. When the variable cannot be found, nil is returned.

func (*Frame) Unwrap

func (ctx *Frame) Unwrap(desc string, begin, end int, vs []interface{}) ValuesUnwrapper

Unwrap creates an Unwrapper.

type GlobFlag

type GlobFlag uint
const (
	NoMatchOK GlobFlag = 1 << iota
)

func (GlobFlag) Has

func (f GlobFlag) Has(g GlobFlag) bool

type GlobPattern

type GlobPattern struct {
	glob.Pattern
	Flags GlobFlag
	Buts  []string
}

GlobPattern is en ephemeral Value generated when evaluating tilde and wildcards.

func (GlobPattern) Equal

func (gp GlobPattern) Equal(a interface{}) bool

func (GlobPattern) Hash

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

func (gp GlobPattern) Repr(int) string

type Inputs

type Inputs func(func(interface{}))

type LValuesOp

type LValuesOp struct {
	Body       LValuesOpBody
	Begin, End int
}

LValuesOp is an operation on an Frame that produce Variable's.

func (LValuesOp) Exec

func (op LValuesOp) Exec(ec *Frame) ([]vartypes.Variable, error)

Exec executes an LValuesOp, producing Variable's.

type LValuesOpBody

type LValuesOpBody interface {
	Invoke(*Frame) ([]vartypes.Variable, error)
}

LValuesOpBody is the body of an LValuesOp.

type Ns

type Ns map[string]vartypes.Variable

Ns is a map from names to variables.

func NewNs

func NewNs() Ns

NewNs creates an empty namespace.

func (Ns) Add

func (ns Ns) Add(name string, v vartypes.Variable) Ns

Add adds a variable to the namespace and returns the namespace itself.

func (Ns) AddBuiltinFn

func (ns Ns) AddBuiltinFn(nsName, name string, impl interface{}) Ns

AddBuiltinFn adds a builtin function to a namespace. It returns the namespace itself.

func (Ns) AddBuiltinFns

func (ns Ns) AddBuiltinFns(nsName string, fns map[string]interface{}) Ns

AddBuiltinFns adds builtin functions to a namespace. It returns the namespace itself.

func (Ns) AddFn

func (ns Ns) AddFn(name string, v Callable) Ns

AddFn adds a function to a namespace. It returns the namespace itself.

func (Ns) AddNs

func (ns Ns) AddNs(name string, v Ns) Ns

AddNs adds a sub-namespace to a namespace. It returns the namespace itself.

func (Ns) Clone

func (ns Ns) Clone() Ns

Clone returns a shallow copy of the namespace.

func (Ns) Equal

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

func (Ns) Get

func (ns Ns) Get(k interface{}) (interface{}, bool)

func (Ns) Hash

func (ns Ns) Hash() uint32

func (Ns) Kind

func (Ns) Kind() string

func (Ns) Repr

func (ns Ns) Repr(int) string

type Op

type Op struct {
	Body       OpBody
	Begin, End int
}

Op is an operation on an Frame.

func (Op) Exec

func (op Op) Exec(ec *Frame) error

Exec executes an Op.

type OpBody

type OpBody interface {
	Invoke(*Frame) error
}

OpBody is the body of an Op.

type OptToScan

type OptToScan struct {
	Name    string
	Ptr     interface{}
	Default interface{}
}

OptToScan is a data structure for an option that is intended to be used in ScanOpts.

type Options

type Options map[string]interface{}

func (Options) Scan

func (opt Options) Scan(opts ...OptToScan)

func (Options) ScanToStruct

func (opt Options) ScanToStruct(ptr interface{})

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

func (PipelineError) Repr

func (pe PipelineError) Repr(indent int) string

type Port

type Port struct {
	File      *os.File
	Chan      chan interface{}
	CloseFile bool
	CloseChan bool
}

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

func (*Port) Close

func (p *Port) Close()

Close closes a Port.

func (*Port) Fork

func (p *Port) Fork() *Port

Fork returns a copy of a Port with the Close* flags unset.

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 Source

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

Source describes a piece of source code.

func NewInteractiveSource

func NewInteractiveSource(code string) *Source

NewInteractiveSource returns a Source for a piece of code entered interactively.

func NewInternalSource

func NewInternalSource(name string) *Source

func NewModuleSource

func NewModuleSource(name, path, code string) *Source

NewModuleSource returns a Source for a piece of code used as a module.

func NewScriptSource

func NewScriptSource(name, path, code string) *Source

NewScriptSource returns a Source for a piece of code used as a script.

func (*Source) Equal

func (src *Source) Equal(other interface{}) bool

func (*Source) Get

func (src *Source) Get(k interface{}) (interface{}, bool)

func (*Source) Hash

func (src *Source) Hash() uint32

func (*Source) Kind

func (src *Source) Kind() string

func (*Source) Repr

func (src *Source) Repr(int) string

type SrcType

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
)

func (SrcType) String

func (t SrcType) String() string

type Test

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

Test is a test case for TestEval.

func NewTest

func NewTest(text string) Test

NewTest returns a new Test with the specified source code.

func (Test) WantAnyErr

func (t Test) WantAnyErr() Test

WantAnyErr returns an altered Test that requires the source code to result in any error when evaluated.

func (Test) WantBytesOut

func (t Test) WantBytesOut(b []byte) Test

WantBytesOut returns an altered test that requires the source code to produce the specified output in the byte pipe when evaluated.

func (Test) WantBytesOutString

func (t Test) WantBytesOutString(s string) Test

WantBytesOutString is the same as WantBytesOut except that its argument is a string.

func (Test) WantErr

func (t Test) WantErr(err error) Test

WantErr returns an altered Test that requires the source code to result in the specified error when evaluted.

func (Test) WantOut

func (t Test) WantOut(vs ...interface{}) Test

WantOut returns an altered Test that requires the source code to produce the specified values in the value channel when evaluated.

func (Test) WantOutBools

func (t Test) WantOutBools(bs ...bool) Test

WantOutBools returns an altered Test that requires the source code to produce the specified boolean values in the value channel when evaluated.

func (Test) WantOutStrings

func (t Test) WantOutStrings(ss ...string) Test

WantOutStrings returns an altered Test that requires the source code to produce the specified string values in the value channel when evaluated.

type ValueUnwrapper

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

ValueUnwrapper unwraps one Value.

func (ValueUnwrapper) Any

func (u ValueUnwrapper) Any() interface{}

func (ValueUnwrapper) Callable

func (u ValueUnwrapper) Callable() Callable

func (ValueUnwrapper) FdOrClose

func (u ValueUnwrapper) FdOrClose() int

func (ValueUnwrapper) Int

func (u ValueUnwrapper) Int() int

func (ValueUnwrapper) NonNegativeInt

func (u ValueUnwrapper) NonNegativeInt() int

func (ValueUnwrapper) String

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.

func (ValuesOp) Exec

func (op ValuesOp) Exec(ec *Frame) ([]interface{}, error)

Exec executes a ValuesOp and produces Value's.

type ValuesOpBody

type ValuesOpBody interface {
	Invoke(*Frame) ([]interface{}, error)
}

ValuesOpBody is the body of ValuesOp.

type ValuesUnwrapper

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

ValuesUnwrapper unwraps []Value.

func (ValuesUnwrapper) One

One unwraps the value to be exactly one value.

Notes

Bugs

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

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 types contains basic types for the Elvish runtime.
Package types contains basic types for the Elvish runtime.
Package vartypes contains basic types for manipulating Elvish variables.
Package vartypes 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