1
0
mirror of https://github.com/danog/liquid.git synced 2024-12-04 18:50:37 +01:00
liquid/expression/context.go

29 lines
740 B
Go
Raw Normal View History

2017-07-04 17:12:40 +02:00
package expression
2017-06-26 21:36:05 +02:00
// Context is the expression evaluation context. It maps variables names to values.
type Context interface {
2017-07-05 17:17:31 +02:00
ApplyFilter(string, valueFn, []valueFn) interface{}
2017-06-26 21:36:05 +02:00
Get(string) interface{}
Set(string, interface{})
}
type context struct {
2017-07-04 17:08:57 +02:00
Config
2017-07-05 17:17:31 +02:00
bindings map[string]interface{}
2017-06-26 21:36:05 +02:00
}
2017-06-27 19:36:38 +02:00
// NewContext makes a new expression evaluation context.
2017-07-04 17:08:57 +02:00
func NewContext(vars map[string]interface{}, s Config) Context {
2017-07-05 17:17:31 +02:00
return &context{s, vars}
2017-06-26 21:36:05 +02:00
}
2017-06-27 19:36:38 +02:00
// Get looks up a variable value in the expression context.
2017-06-26 21:36:05 +02:00
func (c *context) Get(name string) interface{} {
2017-07-03 18:00:43 +02:00
return ToLiquid(c.bindings[name])
2017-06-26 21:36:05 +02:00
}
2017-06-27 19:36:38 +02:00
// Set sets a variable value in the expression context.
2017-06-26 21:36:05 +02:00
func (c *context) Set(name string, value interface{}) {
c.bindings[name] = value
2017-06-26 21:36:05 +02:00
}