(obj, pbf)
| 33 | return obj; |
| 34 | } |
| 35 | export function writeTypeNotString(obj, pbf) { |
| 36 | if (obj.int) pbf.writeVarintField(1, obj.int); |
| 37 | if (obj.long) pbf.writeVarintField(2, obj.long); |
| 38 | if (obj.boolVal) pbf.writeBooleanField(3, obj.boolVal); |
| 39 | if (obj.float) pbf.writeFloatField(4, obj.float); |
| 40 | } |
nothing calls this directly
no test coverage detected
searching dependent graphs…