Prestring is an interface used to encode objects that have compact on-the-wire encodings (via gob) but can still be expanded into verbose string representations on demand using type information. These are key for compact encoding of InferredAnnotationMaps
| 74 | // (via gob) but can still be expanded into verbose string representations on demand using |
| 75 | // type information. These are key for compact encoding of InferredAnnotationMaps |
| 76 | type Prestring interface { |
| 77 | String() string |
| 78 | } |
| 79 | |
| 80 | // Assignment is a struct that represents an assignment to an expression |
| 81 | type Assignment struct { |
no outgoing calls
no test coverage detected