Firstly, sorry for using the issue tracker as a Q/A. Feel free to close if this is not the right place to ask.
How could I (for example) construct a matcher that returns the left-hand-side of all LogicalExpressions?
My first instinct is that I could write LogicalExpression.left but that does not seem to work.
For context, I would like to be able to further refine my query to, for example, LogicalExpressions where the left hand side is an ObjectExpression, but I think the bit in bold above is the primitive I am missing.
Firstly, sorry for using the issue tracker as a Q/A. Feel free to close if this is not the right place to ask.
How could I (for example) construct a matcher that returns the left-hand-side of all
LogicalExpression
s?My first instinct is that I could write
LogicalExpression.left
but that does not seem to work.For context, I would like to be able to further refine my query to, for example,
LogicalExpression
s where the left hand side is anObjectExpression
, but I think the bit in bold above is the primitive I am missing.