encoding/protobuf: don't rely on verbatim Ident formatting

Parse the expressions into proper CUE before
formatting.

Change-Id: I66fdf247c7f5d949aa76aa46906b36656c502f25
Reviewed-on: https://cue-review.googlesource.com/c/cue/+/4721
Reviewed-by: Marcel van Lohuizen <mpvl@golang.org>
diff --git a/encoding/protobuf/testdata/attributes.proto.out.cue b/encoding/protobuf/testdata/attributes.proto.out.cue
index 319e791..28c89d0 100644
--- a/encoding/protobuf/testdata/attributes.proto.out.cue
+++ b/encoding/protobuf/testdata/attributes.proto.out.cue
@@ -21,9 +21,10 @@
 )
 
 StructWrap: {
-	struct?:    {}     @protobuf(1,type=google.protobuf.Struct)
-	any?:       _      @protobuf(2,type=google.protobuf.Value)
-	listVal?:   [...]  @protobuf(3,type=google.protobuf.ListValue)
+	struct?: {
+	} @protobuf(1,type=google.protobuf.Struct)
+	any?: _ @protobuf(2,type=google.protobuf.Value)
+	listVal?: [...] @protobuf(3,type=google.protobuf.ListValue)
 	boolVal?:   bool   @protobuf(4,type=google.protobuf.BoolValue)
 	stringVal?: string @protobuf(5,type=google.protobuf.StringValue)
 	numberVal?: number @protobuf(6,type=google.protobuf.NumberValue)