(accessor: string)
| 42 | } |
| 43 | |
| 44 | write(accessor: string): string { |
| 45 | return ` |
| 46 | ${this.builder.getOptions("customSerializer")}.write(${this.builder.getWriteContextName()}, ${accessor}) |
| 47 | `; |
| 48 | } |
| 49 | |
| 50 | read(accessor: (expr: string) => string, refState: string): string { |
| 51 | const result = this.scope.uniqueName("result"); |
nothing calls this directly
no test coverage detected