VariableDeclToExprDecl converts a go-native variable declaration into a protobuf-type variable declaration.
(v *VariableDecl)
| 1095 | |
| 1096 | // VariableDeclToExprDecl converts a go-native variable declaration into a protobuf-type variable declaration. |
| 1097 | func VariableDeclToExprDecl(v *VariableDecl) (*exprpb.Decl, error) { |
| 1098 | return variableDeclToExprDecl(v) |
| 1099 | } |
| 1100 | |
| 1101 | // variableDeclToExprDecl converts a go-native variable declaration into a protobuf-type variable declaration. |
| 1102 | func variableDeclToExprDecl(v *VariableDecl) (*exprpb.Decl, error) { |