MappedAttributeExpr is an attribute expression of type object that map the object keys to external names (e.g. HTTP header names).
| 9 | // MappedAttributeExpr is an attribute expression of type object that map the |
| 10 | // object keys to external names (e.g. HTTP header names). |
| 11 | MappedAttributeExpr struct { |
| 12 | *AttributeExpr |
| 13 | nameMap map[string]string |
| 14 | reverseMap map[string]string |
| 15 | } |
| 16 | |
| 17 | // MappedAttributeWalker is the type of functions given to WalkMappedAttr. |
| 18 | // |
nothing calls this directly
no outgoing calls
no test coverage detected