transpiler/src/main/java/com/google/cloud/verticals/foundations/dataharmonization/Transpiler.java [484:499]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    FunctionReference opRef = Functions.getOperatorRef(op);
    FunctionCall call =
        Functions.getSignature(opRef, 1)
            .transpileFunctionCall(this, opRef, Collections.singletonList(ctx.expression()), ctx);

    return rebuildFunctionCallWithIterationSupport(sourceMeta(buildSource(ctx)), call);
  }

  /**
   * Visit a parse tree produced by the {@code ExprPostfixOp} labeled alternative in
   * WhistleParser#expression.
   *
   * @param ctx the parse tree
   * @return the visitor result
   */
  @Override
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



transpiler/src/main/java/com/google/cloud/verticals/foundations/dataharmonization/Transpiler.java [502:517]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    FunctionReference opRef = Functions.getOperatorRef(op);
    FunctionCall call =
        Functions.getSignature(opRef, 1)
            .transpileFunctionCall(this, opRef, Collections.singletonList(ctx.expression()), ctx);

    return rebuildFunctionCallWithIterationSupport(sourceMeta(buildSource(ctx)), call);
  }

  /**
   * Visit a parse tree produced by the {@code ExprBlock} labeled alternative in
   * WhistleParser#expression.
   *
   * @param ctx the parse tree
   * @return the visitor result
   */
  @Override
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



