--------------------------------------------------------------------------- Helpers --------------------------------------------------------------------------- prop builds a PropertyAccessNode for concise test expressions.
(path string)
| 16 | |
| 17 | // prop builds a PropertyAccessNode for concise test expressions. |
| 18 | func prop(path string) *PropertyAccessNode { return &PropertyAccessNode{PropertyPath: path} } |
| 19 | |
| 20 | // str builds a StringLiteralNode. |
| 21 | func str(v string) *StringLiteralNode { return &StringLiteralNode{Value: v} } |
no outgoing calls
no test coverage detected