Query operators

Syntax

    QueryOperator :
      .. QualifiedIdentifier
      . ( ListExpressionallowIn )

Descendants operator

o..x

Semantics

The descendants operator o..x looks at o for the shock_proxy::descendants() method and returns the result of invoking that method with the given identifier key.

Filter operator

o.(*.name.startsWith("A"))

Semantics

The filter operator o.(...) looks at o for the shock_proxy::filter() method and creates a wildcard * binding inside the parenthesized expression that represents the element being tested. The parenthesized expression must return a Boolean and represents an activation.