Documentation
¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Bindings ¶
type Bindings interface { // Get returns the value bound for a given name. Get(string) (interface{}, error) // Register registers a value associated with a given name, it returns a new binding Register(string, interface{}) Bindings }
Bindings stores let expression bindings by name.
func NewBindings ¶
func NewBindings() Bindings
Click to show internal directories.
Click to hide internal directories.