(kind Kind)
| 90 | } |
| 91 | |
| 92 | func (f ParseFlags) withKind(kind Kind) ParseFlags { |
| 93 | return (f & ^(ParseFlags(0xFF) << kindOffset)) | (ParseFlags(kind) << kindOffset) |
| 94 | } |
| 95 | |
| 96 | const ( |
| 97 | // DisallowUnknownFields is a parsing flag used to prevent decoding of |