| 14 | import _ "gopkg.in/Knetic/govaluate.v3" |
| 15 | |
| 16 | type Expression interface { |
| 17 | Value() interface{} |
| 18 | Changed() *Event |
| 19 | } |
| 20 | |
| 21 | type reflectExpression struct { |
| 22 | root Expression |
no outgoing calls
no test coverage detected
searching dependent graphs…