(w binary.Writer)
| 84 | } |
| 85 | |
| 86 | func (a *xmlAttribute) encode(w binary.Writer) { |
| 87 | a.namespace.encode(w) |
| 88 | a.name.encode(w) |
| 89 | a.rawValue.encode(w) |
| 90 | a.typedValue.encode(w) |
| 91 | } |
| 92 | |
| 93 | type attributesByResourceId struct { |
| 94 | attributes xmlAttributeList |