codegen/smithy-go-codegen/src/main/java/software/amazon/smithy/go/codegen/integration/ProtocolUtils.java [141:154]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
            GenerationContext context,
            GoWriter writer,
            MemberShape member,
            String origDestOperand,
            Consumer<String> lambda
    ) {
        Shape targetShape = context.getModel().expectShape(member.getTarget());
        Shape container = context.getModel().expectShape(member.getContainer());

        boolean withAddr = !GoPointableIndex.of(context.getModel()).isPointable(member)
                && GoPointableIndex.of(context.getModel()).isPointable(targetShape);
        boolean isMap = container.getType() == ShapeType.MAP;

        String destOperand = origDestOperand;
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



codegen/smithy-go-codegen/src/main/java/software/amazon/smithy/go/codegen/integration/ProtocolUtils.java [187:200]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
            GenerationContext context,
            GoWriter writer,
            MemberShape member,
            String origDestOperand,
            Consumer<String> lambda
    ) {
        Shape targetShape = context.getModel().expectShape(member.getTarget());
        Shape container = context.getModel().expectShape(member.getContainer());

        boolean withAddr = !GoPointableIndex.of(context.getModel()).isPointable(member)
                && GoPointableIndex.of(context.getModel()).isPointable(targetShape);
        boolean isMap = container.getType() == ShapeType.MAP;

        String destOperand = origDestOperand;
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



