(typeInfo: TypeInfo, builder: CodecBuilder, scope: Scope)
| 129 | detectedSerializer: string; |
| 130 | writerSerializer: string; |
| 131 | constructor(typeInfo: TypeInfo, builder: CodecBuilder, scope: Scope) { |
| 132 | super(typeInfo, builder, scope); |
| 133 | this.typeInfo = typeInfo; |
| 134 | this.detectedSerializer = this.scope.declareVar("detectedSerializer", "null"); |
| 135 | this.writerSerializer = this.scope.declareVar("writerSerializer", "null"); |
| 136 | } |
| 137 | |
| 138 | write(accessor: string): string { |
| 139 | return ` |
nothing calls this directly
no test coverage detected