()
| 145 | } |
| 146 | |
| 147 | func NewContextSimple() *ContextSimple { |
| 148 | return &ContextSimple{Data: make(map[string]value.Value), ts: time.Now(), cursor: 0} |
| 149 | } |
| 150 | func NewContextSimpleData(data map[string]value.Value) *ContextSimple { |
| 151 | return &ContextSimple{Data: data, ts: time.Now(), cursor: 0} |
| 152 | } |
no outgoing calls