withScope method

ExpressionResolver<T> withScope(
  1. ExpressionContext ctx,
  2. List<(String?, String)> columns
)

Implementation

ExpressionResolver<T> withScope(
  ExpressionContext ctx,
  List<(String?, String)> columns,
) =>
    ExpressionResolver._(
      context,
      this,
      ctx._handle,
      columns,
      depth + 1,
    );