public override SqlObject VisitParameterRefScalarExpression([NotNull] sqlParser.ParameterRefScalarExpressionContext context)
        {
            Contract.Requires(context != null);

            return(SqlParameterRefScalarExpression.Create(SqlParameter.Create(context.PARAMETER().GetText())));
        }