| 19 | } |
| 20 | |
| 21 | type reflectExpression struct { |
| 22 | root Expression |
| 23 | path string |
| 24 | } |
| 25 | |
| 26 | func NewReflectExpression(root Expression, path string) Expression { |
| 27 | return &reflectExpression{root: root, path: path} |
nothing calls this directly
no outgoing calls
no test coverage detected